Hello guys,
First of all, I can't create any index coloumns because its a live connection and Im not the Admin.
my Problem: I want to add the sum of each day to the next day. I have the date - and for each date are a certain amount of rows, these rows (numbers of customers) I want to visual.
So my visual looks right now like this:
but this is the goal:
I do not have any index. So I did the "countrows" function. So I have for each date a certain amount of rows. This rows I want so sum up and add them to the following day, how can I do this with dax?
Thanks 🙂
Solved! Go to Solution.
@Anonymous , hope you have date in date or fact tables
A measure like
Cumm Sales = CALCULATE(SUM(Sales[Sales Amount]),filter(allselected('Date'),'Date'[date] <=max('Date'[date])))
or
Cumm Sales = CALCULATE(SUM(Sales[Sales Amount]),filter(allselected(Sales),Sales[Sales Date] <=max(Sales[Sales Date])))
@Anonymous , hope you have date in date or fact tables
A measure like
Cumm Sales = CALCULATE(SUM(Sales[Sales Amount]),filter(allselected('Date'),'Date'[date] <=max('Date'[date])))
or
Cumm Sales = CALCULATE(SUM(Sales[Sales Amount]),filter(allselected(Sales),Sales[Sales Date] <=max(Sales[Sales Date])))
Come together to explore latest innovations in code and application development—and gain insights from experts from around the world.
Welcome to the Power BI Community Show! Jeroen ter Heerdt talks about the importance of Data Modeling.
Mark your calendars and join us on Thursday, May 26 at 11a PDT for a great session with Ted Pattison!
User | Count |
---|---|
348 | |
100 | |
64 | |
53 | |
47 |
User | Count |
---|---|
336 | |
125 | |
87 | |
66 | |
66 |