Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
好的,所以我有一个变量和eIncorrect两个字段TotalCreatedMonthDate
eIncorrect
Total
CreatedMonthDate
我想创建一个表达式,它是不正确的金额除以过去两个月内的总数。
我试过这个(也可能是伪的):
=$(eIncorrect)/Count([Total]) where ([CreatedMonthDate] -2)
这显然行不通。
您需要使用集合分析。尝试这样的事情:
$(eIncorrect) / count({$<CreatedMonthDate={">=$(=max(CreatedMonthDate)-2)"}>}Total)