March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early bird discount ends December 31.
Register NowBe one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now
Hello Power BI Community!
I'm having trouble with my Report when trying to create an omnipresent YTD measure for a KPI. I'm trying to have an Advanced Card always display the YTD value, regardless of what Date I have filtered on the Report. In other words, overriding the Date Selected in the Chiclets. Is this a Measure issue? Is it a Relationship Table Issue? Any insights would be much appreciative. Thanks!
YTD Measure
SL YTD % = CALCULATE([SL %], DATESYTD('Date'[Date]),FILTERS('Date'[Month Abbre]))
Value Measure
Image 1: YTD Value = 50.9% when filtering for all of 2021
Image 2: Weekly Value = 52.4% when filtering for Week 6 of February 2021 (I NEED SL YTD% TO READ 50.9%)
Image 3: YTD Measure
Image 4: Date Table
Solved! Go to Solution.
Hey @Anonymous ,
try to solve that in the measure.
I think the ALLEXCEPT function can help you here. With this you can remove all filters of a specific table except for the one you define in the function. As you only want to filter by year I would try to add this to calculate:
SL YTD % =
CALCULATE(
[SL %],
DATESYTD( 'Date'[Date] ),
FILTERS( 'Date'[Month Abbre] ),
ALLEXCEPT( 'Date', 'Date'[Year] )
)
If you need any help please let me know.
If I answered your question I would be happy if you could mark my post as a solution ✔️ and give it a thumbs up 👍
Best regards
Denis
Blog: WhatTheFact.bi
Hey @Anonymous ,
try to solve that in the measure.
I think the ALLEXCEPT function can help you here. With this you can remove all filters of a specific table except for the one you define in the function. As you only want to filter by year I would try to add this to calculate:
SL YTD % =
CALCULATE(
[SL %],
DATESYTD( 'Date'[Date] ),
FILTERS( 'Date'[Month Abbre] ),
ALLEXCEPT( 'Date', 'Date'[Year] )
)
If you need any help please let me know.
If I answered your question I would be happy if you could mark my post as a solution ✔️ and give it a thumbs up 👍
Best regards
Denis
Blog: WhatTheFact.bi
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.
User | Count |
---|---|
113 | |
79 | |
56 | |
55 | |
44 |
User | Count |
---|---|
176 | |
116 | |
77 | |
62 | |
54 |