如何为CrossTab中的每个单元格编写显示字符串公式?

发布于 2024-07-25 21:39:55 字数 130 浏览 8 评论 0 原文

公式场景:检索到的数据有一个状态列,其值为(-1,0,1,2,3), 我想使用公式根据这些值显示字符串。 我使用显示字符串,但它不起作用。

如何编写适用于交叉表中每个单元格的公式?

有什么建议么?

Formula scenario: Retrieved data has a status column which its values is (-1, 0, 1, 2, 3),
I'd like to use formula to display string based on these values. I use Display String, but it doesn't work.

How could I write a formula to work for each cell in crosstab?

Any suggestions?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(3

长不大的小祸害 2024-08-01 21:39:55

公式很容易写。 只需创建一个简单的 if/if else/else not 语句:

if {TABLE.COLUMN} = 1 then 'One' else 'Unknown'

并在交叉表中使用它。

Formulas are pretty easy to write. Just create a simple if/if else/else than statement:

if {TABLE.COLUMN} = 1 then 'One' else 'Unknown'

And use that within the cross tab.

可爱暴击 2024-08-01 21:39:55

使用 GridRowColumnValue("column name") 获取要评估相关单元格的相应行或列值

use GridRowColumnValue("column name") to get the corresponding row or column value to want to evaluate for the cell in question

何处潇湘 2024-08-01 21:39:55

这是旧的,但我希望这对其他人有帮助。

Select CurrentFieldValue
    Case 1:
        "A"
    Case 2:
        "B"

ETC。

This is old, but I hope this help someone else.

Select CurrentFieldValue
    Case 1:
        "A"
    Case 2:
        "B"

etc.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文