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
NickTT
Helper II
Helper II

TOTALYTD Total in Table

DATECOUNTSCOUNTS TYTD
2021-033089
2021-022859
2021-013131
2020-1226323
2020-1124297
2020-1042273
2020-0931231
2020-0822200
2020-0732178
2020-0631146
2020-0512115
2020-0421103
2020-032882
2020-022354
2020-013131
TOTAL41289

 

I need to total the TOTALYTD value over multiple years. The value is correct for each year but I need the table to return the total of each year and not just the current years YTD total. I would like it to return 412 instead of 89 ( 89 + 323).

1 ACCEPTED SOLUTION
Jihwan_Kim
Super User
Super User

Hi, @NickTT 

Please try the below measure.

The sample pbix file's link is down below.

 

 

Counts TYTD FIX =
SUMX( VALUES('Date'[Year]), TOTALYTD([Counts Total], 'Date'[Date]))
 
Picture6.png
 
 

Hi, My name is Jihwan Kim.

If this post helps, then please consider accept it as the solution to help other members find it faster, and give a big thumbs up.

If this post helps, then please consider accepting it as the solution to help other members find it faster, and give a big thumbs up.


Go to My LinkedIn Page


View solution in original post

4 REPLIES 4
NickTT
Helper II
Helper II

That works correctly in a Matrix but what about Table? In a Table it's returning the same row values as COUNTS.

Jihwan_Kim
Super User
Super User

Hi, @NickTT 

Please try the below measure.

The sample pbix file's link is down below.

 

 

Counts TYTD FIX =
SUMX( VALUES('Date'[Year]), TOTALYTD([Counts Total], 'Date'[Date]))
 
Picture6.png
 
 

Hi, My name is Jihwan Kim.

If this post helps, then please consider accept it as the solution to help other members find it faster, and give a big thumbs up.

If this post helps, then please consider accepting it as the solution to help other members find it faster, and give a big thumbs up.


Go to My LinkedIn Page


That did the trick!

amitchandak
Super User
Super User

@NickTT , use isinscope or isfiltered and change measure to simple sum

 

if(isinscope(Date[Date]), [COUNTS TYTD], [COUNTS])

 

or

if(isfiltered(Date[Date]), [COUNTS TYTD], [COUNTS])

 

https://www.kasperonbi.com/use-isinscope-to-get-the-right-hierarchy-level-in-dax/

https://powerpivotpro.com/2013/03/hasonevalue-vs-isfiltered-vs-hasonefilter/

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.

Top Solution Authors