Forum Discussion
Cumulative value from measure column not correct
- 6 years ago
Finally I got the solution
Cumulative CDP = SUMX(
FILTER (ALLSELECTED('Date');
'Date'[DateKey] <=MAX('Date'[Datekey]));
[Confirm Del Plan]
)
Thanks to all to Paul and Kentyler for the suggestion and idea.
Hi
Below is the formula I use
Hi,
I don't think I have the correct formula or data, and I don't see the Date table and Datekey column that you used in cumulative calculation.
Best,
Paul
- sadiahsapiee6 years ago
Helper I
Hi,
Actually, I have Date table which DateKey link to Date column in both Table A and TableB.
Relationship is already created Date[DateKey]<- TableA[Date] & Date[Datekey]<->TableB[Date]. So the Year/Week is from Date table.
- sadiahsapiee6 years ago
Helper I
Finally I got the solution
Cumulative CDP = SUMX(
FILTER (ALLSELECTED('Date');
'Date'[DateKey] <=MAX('Date'[Datekey]));
[Confirm Del Plan]
)
Thanks to all to Paul and Kentyler for the suggestion and idea. - sadiahsapiee6 years ago
Helper I
finally I found the solution by changing the formula like this
-> **bleep** CDP =SUMX(FILTER(ALLSELECTED('Date');'Date'[DateKey] <=MAX('Date'[DateKey]));[Confirm Del Plan])The table shows the cumulative value correctly.Thanks to all that gave idea and suggestion.