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.
我想知道如何定义一个指标来计算包括当月在内的某个事实的 12 个月移动平均值。我定义为 'SELECT AVG('FACT') WHERE Month/Year(Date) BETWEEN {This - 12} AND {This}' 的指标没有按预期工作,但显示了每个月的自然平均值。
如果您希望这只是一个数字而不是按月份 'SELECT AVG('FACT') WHERE Month/Year(Date) BETWEEN {This}-12 AND {This}' 应该可以工作(将 -12 放在日期宏之后{这个})。