Forum Discussion
Nick221_
1 year agoFrequent Visitor
Percentage Change DAX formula
I have two measures "Start Month" and "End Month" in two cards. Below is the formula for these measures. I have added two individual slicers by Month. Is it possible to calculate the perce...
mark_endicott
Super User
1 year agoNick221_ - try this:
VAR _change = [EndMonth] - [StartMonth]
RETURN
DIVIDE( _change, [StartMonth] )
If this works, please mark it as he solution for others with the same challenge.