I'm trying to create a cumulative total measure. The following is what I have...
Developed Exp Disp Cnt = CALCULATE([Exp Disp Count],FILTER(ALLSELECTED(Invoice),Invoice[Days Developed]<=MAX(Invoice[Days Developed])))
This is what I get just using the Exp Disp Count measure....
This is what I get when using the cumulative measure above...
It is obviously giving me the total by days developed. What I want is for it to cumulate by days developed...but also by date. Another words...201610 should show 14562 for 30days...and 14563 for 60days. Suggestions? Thanks!!