To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
Hi,
I used the New quick measure assitant to get a cumulative view of data, I was able to achieve somehwhat the result I was looking for, however, the line chart/table shows the total in the following months where there is no data.
For example, 1246 in Nov 2019 should be 0 by Dec 2019 given that there's no more information for the latter.
How can I stop this from happening?
The generated DAX code from the New Quick Measure assitant is the following:
Thank you in advance!
With help from date table
If(not(isblank(SUM('Table'[Qty]))) , CALCULATE(SUM('Table'[Qty]),filter(allselected(date),date[date] <=max(date[Date]))) , blank())