Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Learn more
I have a BI report that lists all the variables linked to an activity in each row.
One of the rows consists of a "True/False" input.
Is there any way to change the display in my BI report, so that it shows "OK" or "Not completed", instead of the standard "True/false"?
Im new to BI, so a detailed explination would be greatly appreciated.
Thanks in advance!
Solved! Go to Solution.
@EriSte You can create a new calculated column with below dax syntex
Proud to be a Super User!
I found out what the problem was. In my version of BI, everything has to be sprayed by ; instead of,
Thanks everyone!!!
Thank you for all of the responses. I cant get the code to work, I always get the following error:
Unexpected expression "OK"
Unexpected expression "Not Completed"
Everything else seems to fit the formula and be ok. Any ideas as to what I'm missing?
@EriSte , try one of the following
column =if('Table'[Column1],"OK","Not Completed")
Column = SWITCH(true(), 'Table'[Column1]== True(),"OK","Not Completed")
Column = SWITCH(true(),'Table'[Column1]= True(),"OK","Not Completed")
@EriSte You can create a new calculated column with below dax syntex
Proud to be a Super User!
You can create a column to switch the value.
Column = SWITCH('Table'[Column1],True(),"OK",FALSE(),"Not Completed")
Proud to be a Super User!
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.