Forum Discussion
Getting certain text to show in Red
- Anonymous3 years ago
Hi inglexjc
You can use CONTAINSSTRING() function
e.g
Measure 4 = IF(CONTAINSSTRING(SELECTEDVALUE('Table'[Description]),"Letter Waived"),"red","white")Then put it to the conditional formatting
Output
Please refer to the following link to know more about CONTAINSSTRING() function:
CONTAINSSTRING function (DAX) - DAX | Microsoft Learn
Best Regards!
Yolo Zhu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi inglexjc
You can use CONTAINSSTRING() function
e.g
Measure 4 = IF(CONTAINSSTRING(SELECTEDVALUE('Table'[Description]),"Letter Waived"),"red","white")
Then put it to the conditional formatting
Output
Please refer to the following link to know more about CONTAINSSTRING() function:
CONTAINSSTRING function (DAX) - DAX | Microsoft Learn
Best Regards!
Yolo Zhu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.