Hi everyone,
I am working on reports on RTC, I am done with everything but when i write section code in the Visual Studio in the visiblity option. That is not working.
AN Example of that is i put a visibility expression for a section as
"=IIF(Fields!Work_Order_Line__MA_No__.Value <> nothing,true,false)"
but its not working.
Please explain what this expression means and how will it work.
Thanks in Advance
0
Answers
my guess is that you forgot to specify what field of the dataset do you want:
i think that you should change this
Fields!Work_Order_Line__MA_No__.Value
to this
first(Fields!Work_Order_Line__MA_No__.Value)
"Never memorize what you can easily find in a book".....Or Mibuso
My Blog
=IIF(Fields!Work_Order_Line__MA_No__.Value <> "",true,false)
Independent Consultant/Developer
blog: https://dynamicsuser.net/nav/b/ara3n
=IIF(Fields!Work_Order_Line__MA_No__.Value <>"" ="1",false,true)
and i guess its working