Forum Discussion
Anonymous
4 years agoNot applicable
7 day moving average
I really have zero DAX experience. I even tried to add a column and then enter an Excel formula at first. Of course after digging in a little I realized that it doesn't work that way in this case. ...
- Anonymous4 years ago
Hi Anonymous ,
Please check the measure:
Measure = CALCULATE(SUM('Table'[qtyordered]),FILTER(ALLSELECTED('Table'),'Table'[orderdate]>SELECTEDVALUE('Table'[orderdate])-7&&'Table'[orderdate]<=SELECTEDVALUE('Table'[orderdate])))/7Best Regards,
Jay
Anonymous
4 years agoNot applicable
truptis - thank you for this. I couldn't figure out how to modify it for my report, but that's all on me. The measure that was suggested seems to be working great though, so I have a working model now. Again, thank you.