Starting December 3, join live sessions with database experts and the Microsoft product team to learn just how easy it is to get started
Learn moreShape the future of the Fabric Community! Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions. Take survey.
DATE | COUNTS | COUNTS TYTD |
2021-03 | 30 | 89 |
2021-02 | 28 | 59 |
2021-01 | 31 | 31 |
2020-12 | 26 | 323 |
2020-11 | 24 | 297 |
2020-10 | 42 | 273 |
2020-09 | 31 | 231 |
2020-08 | 22 | 200 |
2020-07 | 32 | 178 |
2020-06 | 31 | 146 |
2020-05 | 12 | 115 |
2020-04 | 21 | 103 |
2020-03 | 28 | 82 |
2020-02 | 23 | 54 |
2020-01 | 31 | 31 |
TOTAL | 412 | 89 |
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).
Solved! Go to Solution.
Hi, @NickTT
Please try the below measure.
The sample pbix file's link is down below.
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.
That works correctly in a Matrix but what about Table? In a Table it's returning the same row values as COUNTS.
Hi, @NickTT
Please try the below measure.
The sample pbix file's link is down below.
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.
That did the trick!
@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/
User | Count |
---|---|
92 | |
88 | |
88 | |
79 | |
49 |
User | Count |
---|---|
156 | |
145 | |
105 | |
72 | |
55 |