【发布时间】:2015-07-01 08:13:36
【问题描述】:
我需要检查 rdl <code> 文件中两个字符串的相等性。
以下条件仅检查两者或 Null 值。但我需要检查参数值是否相等。
以下函数是在<code></code> 块中编写的自定义函数。
请帮忙。
NPServedasperPolicy 和 NPServed 参数值来自报告值。
public function getNoticePeriodStatus
(byval NPServed as String,byval NPServedasperPolicy as String)
if(NPServedasperPolicy = NPServed)
getNoticePeriodStatus = "Notice period Fully Served"
end if
【问题讨论】:
-
如果值不相等怎么办?
-
Not Equal 表示将值设置为 getNoticePeriodStatus="Notice period Not Served."
-
如果两者都为空?
-
是的,两者都为空或不相等。
标签: reporting-services ssrs-2008 rdl custom-code