如何更改该值
使用
表中的 Crystal Report 9 列 从
ID Qty
01 100
02 300
03 200
...
...
上表中,如果 id = 3,我想使数量 = 0
If id = 3 then qty = 0
如何制作公式。
需要水晶报表公式帮助
Using Crystal Report 9
Column from table
ID Qty
01 100
02 300
03 200
...
...
From the above table, i want to make a qty = 0 if id = 3
If id = 3 then qty = 0
How to make a formula.
Need Crystal Report Formula Help
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用水晶语法:
if {table.ID}=3 then 0 else {table.quantity}
只需在报表中通常使用数据库字段 {table.quantity} 的任何位置使用该公式即可。
Using Crystal syntax:
if {table.ID}=3 then 0 else {table.quantity}
Just use that formula anywhere in the report where you would normally use the database field {table.quantity}.
您可以编写公式,如下所示,以下只是我应用于我的一份水晶报表的示例。
示例:
You can write a formula like follows, the following is only the example which I applied to one of my crystal reports.
Example: