Supplies are limited. Contact info@espc.tech right away to save your spot before the conference sells out.
Get your discountScore big with last-minute savings on the final tickets to FabCon Vienna. Secure your discount
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 |
---|---|
64 | |
55 | |
46 | |
31 | |
31 |
User | Count |
---|---|
84 | |
73 | |
52 | |
48 | |
43 |