开发者

SSRS if string says this then change it to this

开发者 https://www.devze.com 2023-01-14 09:15 出处:网络
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\"

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!


Just use an expression:

=iif(Fields!Field1.Value="Incomplete", "Pending", Fields!Field1.Value)


Off the top of my head, you can do something like:

=Replace(Fields!thisItem.Value, "Incomplete","Pending")
0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号