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.
在 Power BI 中,我们需要返回上个月当天值的 Dax 公式。表示当报告在 2021 年 4 月 1 日至 4 月 8 日运行时,仅测量 2021 年 3 月 8 日的返回值。谁能帮我得出这个措施。
您可以使用与 CALCULATE 配对的 DATEADD 函数,如下所示:
PM = CALCULATE ( [Total Sales], DATEADD ( Dates[Date], -1, MONTH ) )
上个月同日计算