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
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
Employee
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
Employee
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
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.