用于计算的公式是
IF (NOT ISNULL(ATTR([Order Delivered Date])))
THEN COUNTD([Transaction Id])
ELSE 0
ENDL
答案 0 :(得分:0)
将您的ENDL
更改为END
IF (NOT ISNULL(ATTR([Order Delivered Date])))
THEN COUNTD([Transaction Id])
ELSE 0
END
答案 1 :(得分:0)
countd(if not isnull([Order Delivered Date]) then [Transaction Id] end)
使用过滤器架或其他架子(例如行或列)将公式应用于感兴趣的月份(或其他时间段)
答案 2 :(得分:0)
使用 - >
If not isnull([Order Delivered Date]) then
[Transaction Id]
Else
0
End
将此字段拖放到所需标记中,然后将计算标记为CountD。 这将为您提供特定月份的独特计数。 如果这有帮助,请告诉我。