Forum Discussion
frknklcsln
Helper II
3 years agohow to apply conditional formatting for text values in a table
Hi, I have a table like below: I would like to color format the blank values as red. I know how to do this with numeric values but I couldn't find for the text datatype columns. ...
Anonymous
3 years agoNot applicable
Hi,
Try using this DAX for blanks.
Title =
Try using this DAX for blanks.
Title =
VAR Name1 = IF(SELECTEDVALUE('Sheet1'[Column]) = Blank(), True, False)
RETURN
SWITCH(
TRUE(),
Name1 , "#CD5C5C")
Thanks.
frknklcsln
Helper II
3 years agoHi Anonymous , thanks for the response.
Is this a measure or a calculated column?
- frknklcsln3 years ago
Helper II
Anonymous , second question,
how can I apply this after the dax? can you show me in screenshots?
much appreciated
- Anonymous3 years agoNot applicable
Hi frknklcsln it is a measure