当条件正确时,为什么我的 iif 语句评估结果不为 true?
这是我的发言:
iif(sum(Fields!myfield1.Value) = 0, 0, sum(Fields!myField2.Value)/sum(Fields!myField1.Value))
有什么建议吗?
This is my statement:
iif(sum(Fields!myfield1.Value) = 0, 0, sum(Fields!myField2.Value)/sum(Fields!myField1.Value))
Any suggestions?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
很可能它的评估结果为 True。正如其他评论中提到的,无论如何您都会收到错误,因为无论测试结果如何, Iif() 都会计算所有参数表达式。
通过在除数中添加另一个 Iif() 可以避免该错误。
现在,如果 myfield1 为零并且没有抛出错误,您将得到零。
(不过,当除数为零时,您可能应该显示“N/A”或仅显示一个空字符串。)
Likely it is evaluating as True. As mentioned in other comments, you'll get an error anyway because Iif() evaluates all parameter expressions regardless of the result of the test.
The error can be avoided by adding another Iif() in the divisor.
Now you'll get zero if myfield1 is zero and no error is thrown.
(You probably should show 'N/A' or just an empty string when the divisor is zero, though.)