Forum Discussion
Anonymous
3 years agoNot applicable
DAX Help - Current Month * 12
Hi Guys, I'm trying to create the following formula (YTD Leavers / FY month we are in * 12) / YTD AVR Headcount I have created the [YTD Leavers] & [YTD AVR Headcount] measures but am not sure h...
- 3 years ago
Forgot the "* 12". 🙂
FY month we are in * 12 = CALCULATE ( MAX ( DimDate[Month Num] ), DimDate[Date] = TODAY () ) * 12
DataInsights
3 years agoSuper User
Anonymous,
Try this measure. I'm assuming that [Month Num] is the fiscal month number.
FY month we are in * 12 =
CALCULATE ( MAX ( DimDate[Month Num] ), DimDate[Date] = TODAY () )
DataInsights
3 years agoSuper User
Forgot the "* 12". 🙂
FY month we are in * 12 =
CALCULATE ( MAX ( DimDate[Month Num] ), DimDate[Date] = TODAY () ) * 12