November 10, 2009 at 2:43 pm
Hello,
I have a report that returns 540 records. About half have a field that is empty/null and I would like to hide those.
The field name is DefendantName (varchar)
I would like to apply a filter to the effect of..
If DefendantName is null then hide record.
Any suggestions?
Thanks again! This forum has been a life saver. 😛
November 10, 2009 at 5:47 pm
=iif(Feilds!FeildName.value is nothing,true,false)
try this expression in the hidden property.
let me know if this works.
November 11, 2009 at 6:26 am
Hi ,
One other option is , select the Dataset--> Click the edit option-->Choose Filter tab --> Select required field in Expression column--> select != in operator --> Give value as NULL .
Regards,
MC
Thanks & Regards,
MC
November 12, 2009 at 3:31 am
Hi,
In Dataset filter out your empty records with
where DefendantName is not Null
Regards
Viewing 4 posts - 1 through 3 (of 3 total)
You must be logged in to reply to this topic. Login to reply