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
Anonymous
Not applicable

Find out Value of filter and use in Measure

Hi,

 

I have a measure which uses

 

=-CALCULATE (
        SUM ( Budget[Budget Data] ),
        FILTER ( ALL ( 'Sagecalcodes' ), INT('Sagecalcodes'[Year]) = YEAR(TODAY())
    ))

This only gives me 2017, so if someone goes back to 2016 it still shows 2017, how would I get what date is on the filter into DAX.

 

Thanks

1 ACCEPTED SOLUTION

Hi @Anonymous,

 

Could you try the formula below to see if it works in your scenario?Smiley Happy

=
VAR currentSelectedYear =
    MAX ( 'Sagecalcodes'[Year] )
RETURN
    - CALCULATE (
        SUM ( Budget[Budget Data] ),
        FILTER (
            ALL ( 'Sagecalcodes' ),
            INT ( 'Sagecalcodes'[Year] ) = currentSelectedYear
        )
    )

 

Regards

View solution in original post

4 REPLIES 4
BetterCallFrank
Resolver IV
Resolver IV

Hi @Anonymous

 

the beauty is: you dont have to, it's all been taken care of as soon as you add a second visual to the page (a slicer) and put the 

'Sagecalcodes'[Year]

Column on it,

 

remove the entire filter expression from your measure code, you dont need it 🙂

 

HTH,

Frank 

Anonymous
Not applicable

Thanks Frank, sorry should have explained it better. I am trying to create a Profit and Loss matrix

 

I have two slicers on the screen one is 

'Sagecalcodes'[Year]

the other is

'Sagecalcodes'[Months]

 

I am wanting to have it in the same table.  Due one of slicers being Months I need to add my own filter measure, any idea how to do that?

 

TIA

Hi @Anonymous,

 

Could you try the formula below to see if it works in your scenario?Smiley Happy

=
VAR currentSelectedYear =
    MAX ( 'Sagecalcodes'[Year] )
RETURN
    - CALCULATE (
        SUM ( Budget[Budget Data] ),
        FILTER (
            ALL ( 'Sagecalcodes' ),
            INT ( 'Sagecalcodes'[Year] ) = currentSelectedYear
        )
    )

 

Regards

Anonymous
Not applicable

Works Perfectly, thanks @v-ljerr-msft!

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.