Forum Discussion
tmacfrank
8 years agoFrequent Visitor
Accumulate values in a column
Hi, I am trying to accumulate NBIT values in a column like this. Accu_NBIT = CALCULATE( SUM('Total Distribution All'[NIBT]), FILTER( ALL('Total Distribution All'[NIBT]), 'T...
- Anonymous8 years ago
Hi tmacfrank,
Add an Index Column to your table in Query Editor, and then try with this DAX formula to create your column
Accu_NBIT = CALCULATE ( SUM ( 'Total Distribution All'[NIBT] ), ALL (Total Distribution All), 'Total Distribution All'[Index] <= EARLIER ( 'Total Distribution All'[Index] ) )Regards
Anonymous
8 years agoNot applicable
Hi tmacfrank,
Add an Index Column to your table in Query Editor, and then try with this DAX formula to create your column
Accu_NBIT =
CALCULATE (
SUM ( 'Total Distribution All'[NIBT] ),
ALL (Total Distribution All),
'Total Distribution All'[Index]
<= EARLIER ( 'Total Distribution All'[Index] )
)Regards