Forum Discussion
Amedved
2 years agoFrequent Visitor
Creating a Rolling, Cumulative Metric in a Matrix Visual
Hi! I am trying to create a measure to add to my matrix visual that is a rolling total. This "Backlog" measure should subtract the current day's "Output" from the prior day's backlog plus the current...
- Anonymous2 years ago
Hi Amedved ,
I updated your sample pbix file, please find the details in the attachment. You can create a new calculation to get it:
Calculation = PREVIOUS([Backlog])+[RemainingQtyTotal]-[Output]Best Regards
Anonymous
2 years agoNot applicable
Hi Amedved ,
I updated your sample pbix file, please find the details in the attachment. You can create a new calculation to get it:
Calculation = PREVIOUS([Backlog])+[RemainingQtyTotal]-[Output]
Best Regards
Amedved
2 years agoFrequent Visitor
Thanks very much Anonymous . I was not familiar with visual calculations. I took your suggested approach and got to the desired outcome after I adjusted the formula a bit to meet some requirements. Thanks again for the assist.