Forum Discussion
Anonymous
5 years agoNot applicable
undefined
I have a data set that is decimal and I converted it to hh:mm:ss in the visual but I don't know how to conditional format the hh:mm:ss with icons. Do I have to create a new column and conditional for...
- 5 years ago
Hi Anonymous,
You can apply conditional formatting to the time format.
Create a measure as:
Measure = IF( MAX('Table'[Column1])>=TIME(6,0,0), "blue", "yellow" )Here is the output:
Please try the attached pbix.
Best Regards,
LinkIf this post helps then please consider Accept it as the solution to help the other members find it more quickly.
v-xulin-mstf
5 years agoCommunity Support
Hi Anonymous,
You can apply conditional formatting to the time format.
Create a measure as:
Measure =
IF(
MAX('Table'[Column1])>=TIME(6,0,0),
"blue",
"yellow"
)
Here is the output:
Please try the attached pbix.
Best Regards,
Link
If this post helps then please consider Accept it as the solution to help the other members find it more quickly.