March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early bird discount ends December 31.
Register NowBe one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now
Hi all,
I have a slicer where I can choose dates to calculate the running total for any day that I select and display it on a line graph.
Requirement:
I need to overlay the graph with the running total of the previous day. How do I rewrite my measure such that when I select the same date above, the graph will display the running total for both 20220114 and 20220113?
Data and Measure used:
I have a Date Dimension Table that looks like the one below:
A day which is identified by the DateID column starts from 8pm the previous day and ends 7:59pm the following day.
So to calculate the Running Total I use the below measure :
CumulativeNumberOfOrders =
CALCULATE( COUNTROWS('Fact OrderTable'),
FILTER(ALLSELECTED('Dim DateTimeDim'),'Dim DateTimeDim'[DateTimeForPowerBI]<=MAX('Dim DateTimeDim'[DateTimeForPowerBI])
)
)
@Anonymous , If you select one date and want data for more than one date you need independent date table
//Date1 is independent Date table, Date is joined with Table
new measure =
var _max = maxx(allselected(Date1),Date1[Date])
var _min = _max -1
return
calculate( sum(Table[Value]), filter('Date', 'Date'[Date] >=_min && 'Date'[Date] <=_max && 'Date'[Date] <= max('Date'[Date]) ))
Need of an Independent Date Table:https://www.youtube.com/watch?v=44fGGmg9fHI
Hi @amitchandak
the solution you provided does not seem to give me the graph I needed:
HI @amitchandak the solution you provided does not seem to give me cumulative graph.
I need to display the cumulative sum as displayed on the LHS, however the script you provided displays individual orders at specific times.
hi @amitchandak , did you mean have two dates table ? Date1 and Date, where Date1 is not connected to anything and Date is connected to my fact table?
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions.
Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.
User | Count |
---|---|
124 | |
87 | |
87 | |
70 | |
51 |
User | Count |
---|---|
205 | |
153 | |
97 | |
79 | |
69 |