We're giving away 30 tickets for FREE! Share your story, your vision, or your hustle and tell us why YOU deserve a ticket.
Apply nowWin a FREE 3 Day Ticket to FabCon Vienna. Apply now
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.
Solved! Go to Solution.
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
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
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.
User | Count |
---|---|
67 | |
61 | |
47 | |
35 | |
32 |
User | Count |
---|---|
87 | |
71 | |
57 | |
51 | |
45 |