Crystal Report:If-Else If 公式
对于水晶报告中的一个字符串字段,我希望编写公式,其中如果该字段为空,则它应该显示为“无值”,否则应该出现实际值
我写的是
Local StringVar x; 如果 {mysp;1.mystringfield} ="" 或 IsNull({mysp;1.mystringfield}) 则 x := "无值"; 其他 x := {mysp;1.mystringfield}
粗体标记显示错误,指出“剩余文本似乎不是公式水晶报告的一部分”
我的公式中有什么不正确的地方?
让我知道更多意见
谢谢
For one string field in crystal report i wish to write up formula where if that field is null, it should display as "No value" else the actual values should come up
What i have written is
Local StringVar x;
If {mysp;1.mystringfield} ="" or IsNull({mysp;1.mystringfield}) then
x := "No value";
Else
x := {mysp;1.mystringfield}
The bold marked shows error saying "the remaining text does not appear to be part of the formula crystal reports"
Whats incorrect in my formula?
Let me know for more inputs
thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我认为您需要删除
;
并将 or 括在括号中:I think you need to remove the
;
and wrap the or in brackets: