c# - Report if one value is null don't show other value -
i'm trying build report asp.net report.
if check image:
i'm showing table tickets , charge. charge column has these value:
=fields!charge.value
what want achieve show charge value if ticket value not null. see in image, there 4 tickets visible , want show charge 4 tickets not charges.
any idea how can achieve that?
you can use following in charge column
=iif(isnothing(fields!ticket.value), "", fields!charge.value)
it should have worked otherwise can try fields!ticket.value == "" or fields!ticket.value.tostring() == ""
Comments
Post a Comment