gpt4 book ai didi

report - 在 IIF 语句中使用 OR...RDLC

转载 作者:行者123 更新时间:2023-12-02 09:48:31 25 4
gpt4 key购买 nike

请问有人可以帮助我吗?我的问题是:

How to use properly OR in IIF statement in RDLC report?

Fields!A.Value 和 Fields!B.Value 都包含字符串或空字符串。

这段代码工作正常:

=Iif(Len(CStr(First(Fields!A.Value, "dsResult_dtRows")))=0, True, False)

此代码不起作用:

=Iif(Len(CStr(First(Fields!A.Value, "dsResult_dtRows")))=0 Or
Len(CStr(First(Fields!B.Value, "dsResult_dtRows")))=0, True, False)

非常感谢您的想法和答案-马雷克-

最佳答案

您应该能够连接字段值并测试空字符串,而不是单独测试每个值。

尝试

IIF(Fields!A.Value & Fields!B.Value = '',true,false)

对于空返回 true 的情况,请尝试:

IIF(Fields!A.Value ='' or Fields!B.Value = '',true,false)

关于report - 在 IIF 语句中使用 OR...RDLC,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4788205/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com