Nav 2013 reports - hiding a field according to an option

Hi everyone,

I am trying to hide a field in my report according to the value of a variable of type Option

This is the expression I put in the Hidden property of the field:

=IIF(Fields!myField.Value=0,FALSE,TRUE)

but it didn’t work, the reports print empty :(

How shall I do it?

Try this =iif(Format(Fields!myField.value) = “Ur_OPTION”,false,true)

Regards

Palak Thakrar