Forum Discussion
Running Total Per Month
Hi,
I want to get running total per day and month, most of the measures have filter on date like below:
filter(all('Date'),'Date'[date] <=max('Date'[date])
but when I do that the running total starts from the available data, not what is on the visual.
so I have to add another filter on the date.
this is my measure:
Do I need to create another measure for the monthly view?
I found this below dax somewherelse and it is doing what it should:
Testing Qty Shipped RT =CALCULATE([Quantity Shipped],FILTER(ALLSELECTED('Calendar - Requested Date'), 'Calendar - Requested Date'[Calendar Date]<= max('Calendar - Requested Date'[Calendar Date]))Thanks for everyone's help.)
9 Replies
- Ashish_MathurSuper User
Hi,
Follow this process
1. Create a Calendar Table with calculated column formulas for Year, Month name and Month number
2. Sort the Month name column by the Month number
3. Create a relationship (Many to One and Single) from the Date column of your Data Table to the Date column of the Calendar Table
4. To your visual, drag Year, Month name and Date from the Calendar Table
5. Write these measures
Quantity Shipped = SUM('Sales Order Details'[Unit Quantity Shipped])Quantity shipped YTD = calculate([quantity shipped],datesytd(calendar[date],"31/12"))Hope this helps.
- sabd80Helper IV
Ashish_Mathur , thanks for your reply, I don't want YTD, I just need cummulative of the dates in the visuals.
- Ashish_MathurSuper User
Hi,
See if this measure works
Quantity shipped YTD = calculate([quantity shipped],datesbetween(calendar[date],minx(allselected(),Calendar[Date]),max(calendar[date])))
- sabd80Helper IV
I found this below dax somewherelse and it is doing what it should:
Testing Qty Shipped RT =CALCULATE([Quantity Shipped],FILTER(ALLSELECTED('Calendar - Requested Date'), 'Calendar - Requested Date'[Calendar Date]<= max('Calendar - Requested Date'[Calendar Date]))Thanks for everyone's help.) - grandtotalResolver III
You should use the concept described here by SQLBI:
https://www.sqlbi.com/articles/computing-running-totals-in-dax/Sales RT :=
VAR MaxDate = MAX ( 'Date'[Date] ) -- Saves the last visible date
RETURN
CALCULATE (
[Sales Amount], -- Computes sales amount
'Date'[Date] <= MaxDate, -- Where date is before the last visible date
ALL ( Date ) -- Removes any other filters from Date
)I hope this will help you!
- sabd80Helper IV
grandtotal , I have tried that, it does not work for daily and monthly.
Testing Qty Shipped RT Month2 =VAR SelectedDate = max('Calendar - Requested Date'[Calendar Date])VAR QtyShippedRT=CALCULATE([Quantity Shipped],'Calendar - Requested Date'[Calendar Date]<= max('Calendar - Requested Date'[Calendar Date]), ALL('Calendar - Requested Date'))returnQtyShippedRT- grandtotalResolver III
can you post the definiton of [Quantity Shipped]?