A reporting services question...

FranklinFranklin Member Posts: 253
edited 2012-10-18 in NAV Three Tier
Hi everybody,

I need to hide a field when Reporting show #error. For example:

When the field is =Field1/Field2 but Field1 = 0 the result is #Error. I would like to hide this field or something like that, it´s horrible run a report and see #Error in the report.

Thx a lot

:-k

Comments

  • ara3nara3n Member Posts: 9,256
    You can change the visibility property to =IIF(Fields!Field1.Value = 0,true,false)

    or change the Expression Value from just Field1/Field2 to =IIF(Fields!Field2.Value = 0,0,Field1/Field2)
    Ahmed Rashed Amini
    Independent Consultant/Developer


    blog: https://dynamicsuser.net/nav/b/ara3n
Sign In or Register to comment.