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!The Power BI Data Visualization World Championships is back! It's time to submit your entry. Live now!
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 format the decimal point and then convert to time format?
Solved! Go to Solution.
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.
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.
@Anonymous , Create conditional formatting based on the decimal column and use that.
You can also use color measure
Color =Switch(true() ,
[Number] <600 , "Red" ,
[Blue] <600 , "Blue" ,
// Add other
)
Use in conditional formatting with field value option
The Power BI Data Visualization World Championships is back! It's time to submit your entry.
Check out the January 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 65 | |
| 44 | |
| 31 | |
| 25 | |
| 23 |
| User | Count |
|---|---|
| 135 | |
| 114 | |
| 58 | |
| 39 | |
| 35 |