Explore and share Fabric Notebooks to boost Power BI insights in the new community notebooks gallery.
Check it out now!Microsoft is giving away 50,000 FREE Microsoft Certification exam vouchers. Get Fabric certified for FREE! Learn more
Dear All,
I am seeking for help for the following:
I have the following slicer, by making use of field 'Geannuleerd Door Klant':
It shows 0,00 and 1,00
Instead of these valuies I would like to show "NO" and 'YES" --> 0,00 is "NO" and 1,00 is "YES"
I am think to build a separate measure for this. Can someone help me out here?
Thanks!
Solved! Go to Solution.
Column = IF([Column] = 1,00,"Yes","No")
//Create new column for that and try it
//And then put the new created column in slicer
Did I answer your question? If so, please mark my post as a solution!
Proud to be a Super User!
@Anonymous
>>> Cal_Col >>> if(Geannuleerd Door Klant=1,"Yes","No")
Regards,
Ritesh
Mark my post as a solution if it helped you| Munde and Kudis (Ladies and Gentlemen) I like your Kudos!! !!
My YT Channel Dancing With Data !! Connect on Linkedin !!Power BI for Tableau Users
@Anonymous
Have you tried creating a new column with an IF statement?
e.g.
New Column = IF (TableName[Geannuleerd Door Klant]= 0, "NO", "YES")
When option of adding a column is blocked, would it also be possible to do it by creating a measure?
why is it blocked.. how do you connect with the source... through direct query?
It's hidden. I imported the Power BI data set. Probably protected by the company
When option of adding a column is blocked, would it also be possible to do it by creating a measure?
why is it blocked.. how do you connect with the source... through direct query?
It's hidden. I imported the Power BI data set. Probably protected by the company
@Anonymous
Have you tried creating a new column with an IF statement?
e.g.
New Column = IF (TableName[Geannuleerd Door Klant]= 0, "NO", "YES")
@Anonymous
>>> Cal_Col >>> if(Geannuleerd Door Klant=1,"Yes","No")
Regards,
Ritesh
Mark my post as a solution if it helped you| Munde and Kudis (Ladies and Gentlemen) I like your Kudos!! !!
My YT Channel Dancing With Data !! Connect on Linkedin !!Power BI for Tableau Users
Column = IF([Column] = 1,00,"Yes","No")
//Create new column for that and try it
//And then put the new created column in slicer
Did I answer your question? If so, please mark my post as a solution!
Proud to be a Super User!