Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
Hello Team,
I have a new requirement related to change the text field with a contion : If the column valu is pass then text should be in green color and if it is fail then in Red.
Please share your views with me.
Thanks,
Sandhya
@Sandhyarani958,
Currently, the "Conditonal formatting for text" feature is not available, there is an idea about it, please vote it up.
To work around this issue, you can create a calculated column using DAX below, then use conditional formatting for the checkcolumn.
checkcolumn=IF(Table[Column1]="pass",1,0)
Regards,
Lydia