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

Earn the coveted Fabric Analytics Engineer certification. 100% off your exam for a limited time only!

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
April AMA free

Microsoft Fabric AMA Livestream

Join us Tuesday, April 09, 9:00 – 10:00 AM PST for a live, expert-led Q&A session on all things Microsoft Fabric!

March Fabric Community Update

Fabric Community Update - March 2024

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