To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
Hello,
I hope you are good.
I have difficulty in having the accumulated value of the last month, for the same days.
What I want is represented in the following image:
The measurements I have at the moment are:
Solved! Go to Solution.
please try
Value2_SPLM_Accumulated =
MAXX (
SUMMARIZE ( 'dCalendar', 'dCalendar'[CalendarDate], 'dCalendar'[Day] ),
IF (
'dCalendar'[Day] = 1,
0,
CALCULATE ( [.Value1_MTD], DATEADD ( 'dCalendar'[Date], -1, MONTH ) )
)
)
please try
Value2_SPLM_Accumulated =
MAXX (
SUMMARIZE ( 'dCalendar', 'dCalendar'[CalendarDate], 'dCalendar'[Day] ),
IF (
'dCalendar'[Day] = 1,
0,
CALCULATE ( [.Value1_MTD], DATEADD ( 'dCalendar'[Date], -1, MONTH ) )
)
)
It works! Thank you 😊
User | Count |
---|---|
14 | |
11 | |
6 | |
6 | |
5 |
User | Count |
---|---|
29 | |
17 | |
11 | |
7 | |
5 |