Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
5 years ago
Solved

Show YTD Value Even When Filtered To A Single Week? DAX? Relationship Table?

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, regardles...
  • selimovd's avatar
    5 years ago

    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