The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredCompete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.
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