Forum Discussion
Mk60
Resolver I
2 years agoPeriod over Period variance
Looking for a DAX calculation to calculate change in dollars, (variance) for Metrics 1-5 in column A, from quarter to quarter to get values in columns E and F for each metric in column A and Total as...
- 2 years ago
remove the DIVIDE part and just keep the difference part.
Anonymous
2 years agoNot applicable
Hi Mk60 ,
Thanks for lbendlin and lbendlin response. Here are my additional dax expressions and examples
Sample data
Create measures
Q2-Q3 = SELECTEDVALUE('Table'[23-Sep])-SELECTEDVALUE('Table'[23-Jun])Q3-Q4 = SELECTEDVALUE('Table'[23-Dec])-SELECTEDVALUE('Table'[23-Sep])
Final output
Best regards,
Albert He
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly