Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
Anonymous
Not applicable

Filtered Date RunningTotal

Hi,

I am using a cumulative total calculation to display a running total of a value throughout the year. The calculation is as follows:

Running Total = 
CALCULATE(SUM(Table[Amnt]),
	FILTER(
		ALLSELECTED('Date Dim'[Date]),
		'Date Dim'[Date] <= MAX('Date Dim'[Date]) 
        )
)

This works perfectly, and gives my cumulative total for my two years of data.

 

However, I want to be able to filter to Current Year, and Current Year + 1 so build the column in "Date Dim":

Year Filter = IF(YEAR('Date Dim'[Date]) == YEAR(TODAY()), "CY",
                         IF(YEAR('Date Dim'[Date]) == YEAR(TODAY())+1, "CY+1",BLANK()))
But when I filter to CY+1, the running total is still running from the current year. I want the running total to reset when filtered to CY+1 and start again from zero.
Is anyone able to help?
1 ACCEPTED SOLUTION
amitchandak
Super User
Super User

Try using something like

Using YTD = TOTALYTD(SUM(Sales[Sales Amount]),'Date'[Date Filer])

Refer page 9 on the link https://www.dropbox.com/s/tu56wooipvoyoy3/CompareRange_timedim_YearTillDate.pbix?dl=0

 

Appreciate your Kudos. In case, this is the solution you are looking for, mark it as the Solution. In case it does not help, please provide additional information and mark me with @
Thanks.

View solution in original post

5 REPLIES 5
IanCockcroft
Post Patron
Post Patron

Wont CALCULATE() ignore any filters you have used?

Anonymous
Not applicable

@IanCockcroft  not that I am aware of. If I filter by anything else (lets say market), the values will change to reflect that filter

HI, @Anonymous 

You just need to adjust your formula as below:

NEW Running Total = 
CALCULATE(SUM('Table'[Amnt]),
	FILTER(
		ALLSELECTED('Date Dim'),
		'Date Dim'[Date] <= MAX('Date Dim'[Date]) 
        )
)

Because for your formula, It just removes context filters from column 'Date Dim'[Date], other columns in 'Date Dim' table won't be affected.

 

Regards,

Lin

Community Support Team _ Lin
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
amitchandak
Super User
Super User

Try using something like

Using YTD = TOTALYTD(SUM(Sales[Sales Amount]),'Date'[Date Filer])

Refer page 9 on the link https://www.dropbox.com/s/tu56wooipvoyoy3/CompareRange_timedim_YearTillDate.pbix?dl=0

 

Appreciate your Kudos. In case, this is the solution you are looking for, mark it as the Solution. In case it does not help, please provide additional information and mark me with @
Thanks.

Anonymous
Not applicable

Thank you @amitchandak , thats worked great.

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.