Forum Discussion
David-Menacho
2 years agoFrequent Visitor
Cumulative Sum with condicion
Hi i want to implement the next measure, which is similar to a cumulative sum but with a Max conditional The formula for the measure is: - first value is 0 - for the rest: value is Max...
- 2 years ago
output :
use the meaure below :
this measure assume that you are reading the date from the same table ,
if not, then simply change allselected(tbl_name[date]) to allselected(dimdate[date]) and orderby(dimdate[date], asc)
Measure 10 = var prev_value = CALCULATE( SUM('tbl_name'[Value]), OFFSET( -1, ALLSELECTED('tbl_name'[date]), ORDERBY('tbl_name'[date] , asc) ) ) return MAX(0,SUM('tbl_name'[Value]) - 1 + prev_value)let me know if it works for you .
If my answer helped sort things out for you, i would appreciate a thumbs up 👍 and mark it as the solution ✅
It makes a difference and might help someone else too. Thanks for spreading the good vibes! 🤠
vanessafvg
Community Champion
2 years agoso are you saying you want the max value please provide an example of what right looks like and supply the data in text format.
David-Menacho
2 years agoFrequent Visitor
thanks for your time, i edited my question