ssrs 2012 - How to give expression for a textbox when multiple fields are used in the textbox of rdlc? -
need display [feature] - [featurestatus] - [featurepercomplete]% if feature field has value or else need display n/a, expreession need give
try changing
=iif(fields!feature.value nothing, "n/a",fields!feature.value & " - " & fields!featurestatus.value & " - " & fields!featurepercomplete.value & "%")
to..
=iif(isnothing(fields!feature.value), "n/a",fields!feature.value & " - " & fields!featurestatus.value & " - " & fields!featurepercomplete.value & "%")
this relies on feature column being null in circumstances - null, or blank?
Comments
Post a Comment