SSRS如果字符串说明,那么将其更改为此

use*_*432 3 reportingservices-2005 visual-studio reporting-services

我在SSRS中有一个字段,它从SQL返回"不完整"

在SSRS中我想说任何时候这个字段说"不完整"将字符串更改为"待定"

这必须在SSRS中完成.

谢谢!

Dec*_*r97 13

只需使用表达式:

=iif(Fields!Field1.Value="Incomplete", "Pending", Fields!Field1.Value)
Run Code Online (Sandbox Code Playgroud)