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

Score big with last-minute savings on the final tickets to FabCon Vienna. Secure your discount

Reply
Wresen
Post Patron
Post Patron

Retrive slicer value to add in formula. (Column)

Hi all

I am a pretty new user to Power BI and i have encounter a problem with the Slicer that i do not understand.

 

I want created a new column in a table with the condition:

(Month1 > month2 && month1 = (the Slicer value) ;"YES";"NO")

 

I have been able to create (Month1>Month2 && Month ="201905" ;"YES";NO") 

Is it possible to do this (get the slicer value a variable for my column formula)

 

Thanks so much for all the help i can recive.

 

 

1 ACCEPTED SOLUTION
v-yulgu-msft
Microsoft Employee
Microsoft Employee

Hi @Wresen ,

 

You cannot do this in a calculated column, as calculated column always returns static value once it has been initilized. However, you can achieve that via a measure.

Measure =
IF (
    SELECTEDVALUE ( TableName[Month1] ) > SELECTEDVALUE ( TableName[Month2] )
        && SELECTEDVALUE ( TableName[Month1] )
            SELECTEDVALUE ( SlicerTable[SlicerColumn] ),
    "YES",
    "NO"
)

 

Best regards,

Yuliana Gu

Community Support Team _ Yuliana Gu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

2 REPLIES 2
v-yulgu-msft
Microsoft Employee
Microsoft Employee

Hi @Wresen ,

 

You cannot do this in a calculated column, as calculated column always returns static value once it has been initilized. However, you can achieve that via a measure.

Measure =
IF (
    SELECTEDVALUE ( TableName[Month1] ) > SELECTEDVALUE ( TableName[Month2] )
        && SELECTEDVALUE ( TableName[Month1] )
            SELECTEDVALUE ( SlicerTable[SlicerColumn] ),
    "YES",
    "NO"
)

 

Best regards,

Yuliana Gu

Community Support Team _ Yuliana Gu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Thanks so much for the help.

Now i understand how to retrive the value from the slicer

 

I belivive i need to rethink how i should do my report now with this new.

 

Thanks again.

 

Helpful resources

Announcements
August Power BI Update Carousel

Power BI Monthly Update - August 2025

Check out the August 2025 Power BI update to learn about new features.

August 2025 community update carousel

Fabric Community Update - August 2025

Find out what's new and trending in the Fabric community.