I have a field in SSRS and it returns from SQL saying "Incomplete"
In SSRS I want to say anytime this field says "Incomplete" to change the string to "Pending"
This has to be done in SSRS.
Thanks!
I have a field in SSRS and it returns from SQL saying "Incomplete"
In SSRS I want to say anytime this field says "Incomplete" to change the string to "Pending"
This has to be done in SSRS.
Thanks!
Off the top of my head, you can do something like:
=Replace(Fields!thisItem.Value, "Incomplete","Pending")
Just use an expression:
=iif(Fields!Field1.Value="Incomplete", "Pending", Fields!Field1.Value)