如何使用 Power BI 中的计算列将日期分类为最近 3 个月或最近 6 个月等等 table

How to classify dates as last 3 months, or last 6 months and so on from in a table using calculated column in Power BI

我想要一个额外的列,基本上将 Date 列分类为 last 3 monthslast 6 monthslast 9 months 等 [=15] =]日期。

我尝试使用 IF 函数,但显然,我不太擅长 DAX。

谢谢。任何帮助将不胜感激。

解决你的问题有点棘手,但是如果你了解背后的基本原理,你会发现它很容易使用,请注意Switch由于` < 或 >' 运算符不适用:

这是我解决月份分类的dax公式,如果有帮助请采纳:)

Month Class = 
var monthDiff = (YEAR(TODAY()) - YEAR(Sheet1[Date]))*12 + MONTH(TODAY()) - MONTH(Sheet1[Date])
return
IF(monthDiff < 4,"Last 3 Month",
    IF(monthDiff < 7, "Last 6 month", 
        IF(monthDiff <10,"Last 9 month",
            "more than a year")))

结果: