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

Data Days is here! Join us now for 60+ days of learning, challenges, and connection. Learn more

Reply
NickTT
Helper III
Helper III

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.


Click here to visit my LinkedIn page

View solution in original post

4 REPLIES 4
NickTT
Helper III
Helper III

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.


Click here to visit 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/

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

Helpful resources

Announcements
Fabric Data Days is here Carousel

Fabric Data Days 2026

Don't miss out on Data Days, June 15 through August 7. Learn Fabric, Power BI, SQL, AI and more.

May Power BI Update Carousel

Power BI Monthly Update - May 2026

Check out the May 2026 Power BI update to learn about new features.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.