Hide Records if Field is null??

  • 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. 😛

  • =iif(Feilds!FeildName.value is nothing,true,false)

    try this expression in the hidden property.

    let me know if this works.

  • 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

  • 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