如何更改该值

发布于 2024-12-10 00:30:44 字数 221 浏览 0 评论 0原文

使用

表中的 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

月亮是我掰弯的 2024-12-17 00:30:44

使用水晶语法:
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}.

缺⑴份安定 2024-12-17 00:30:44

您可以编写公式,如下所示,以下只是我应用于我的一份水晶报表的示例。

示例:

if(ToText({AgentLoginHistory;1.StatusText})= "ONLINE")Then
 formula = "LoggedIn"
else
 formula = {AgentLoginHistory;1.StatusText}
end if

You can write a formula like follows, the following is only the example which I applied to one of my crystal reports.

Example:

if(ToText({AgentLoginHistory;1.StatusText})= "ONLINE")Then
 formula = "LoggedIn"
else
 formula = {AgentLoginHistory;1.StatusText}
end if
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文