只有当样本中只有一种货币时,我才需要输出余额。我找到了一种为特定货币单独输出此条件的方法:
NUM(Sum({$<[currency]={'810'}>} [currency_balance]), '# ##0,00')
现在,我只需要在过滤是针对一种货币的情况下进行sum输出。
发布于 2021-10-14 01:30:14
问题已经解决了。
事实证明这很简单:
if(Count(distinct([currency]) = 1, Num(Sum([currency_balance]), '# ##0, 00')
https://stackoverflow.com/questions/69566913
复制