Question : display only records with "1"

I setup a report in SSRS with groups and drilldowns...in the drill down, I want to only show records that have 1 in the routingexception....I tried this but it didn't work

=iif(Fields!RoutingException.Value>0, False, True)

Answer : display only records with "1"

All you have to do is place this in the detail row in the Visibitiy - hide....

=Fields!RoutingException.Value<> 1

This will hide all rows that are not a 1 value.  

Random Solutions  
 
programming4us programming4us