To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
Can someone please help with showing me how to write a DAX formula to show the previous month's value? The current column formulae I have are as follows:
Solved! Go to Solution.
Try this out:
Total Claims Prev Mth =
CALCULATE(
AVERAGEX(
GoAheadTPA,
GoAheadTPA[Claims Paid] + GoAheadTPA[Claims Reserve]
),
DATEADD(GoAheadClaim[Incident YearMonth], -1, MONTH)
)
Proud to be a Super User! | |
Try this out:
Total Claims Prev Mth =
CALCULATE(
AVERAGEX(
GoAheadTPA,
GoAheadTPA[Claims Paid] + GoAheadTPA[Claims Reserve]
),
DATEADD(GoAheadClaim[Incident YearMonth], -1, MONTH)
)
Proud to be a Super User! | |
User | Count |
---|---|
14 | |
11 | |
6 | |
6 | |
5 |
User | Count |
---|---|
29 | |
17 | |
11 | |
7 | |
5 |