Forum Discussion
algoritmia_pbi
3 years agoRegular Visitor
roll up values in column
Hi I have a dataset like the following and would like to have something similar to the third column Date Sales Column I need: Sales rollup March 1 ...
algoritmia_pbi
3 years agoRegular Visitor
Yes ryan_mayu it's a measure, sorry if I didn't mentioned it
ryan_mayu
Super User
3 years agopls try this
Measure = sumx(FILTER(ALL('Table'),'Table'[date]<=max('Table'[date])&&YEAR('Table'[date])=YEAR(MAX('Table'[date]))&&MONTH('Table'[date])=MONTH(MAX('Table'[date]))),'Table'[Sales2])
pls see the attachment below