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!Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.
Out of curiosity are you able to conditionally format values that are formatted like 0:00:00? I'm looking to format things that are above 15 minutes. I tried including a color VAR in my DAX Formula to format it. So what I added was the VAR color and the & IF statement. It seemed to have worked, however instead of making the values red, it added the #ff0000" at the end of those that were above 15 minutes.
Avg Response Time (Mins) = VAR hours = ROUNDDOWN( 'ReadTime'[AvgResponseTime] / 3600,0) VAR minutes = ROUNDDOWN( MOD( 'ReadTime'[AvgResponseTime], 3600) / 60, 0) VAR seconds = INT( MOD ('ReadTime'[AvgResponseTime], 60) ) VAR color = "0:15:00" RETURN FORMAT(hours, "0") & ":" & FORMAT(minutes, "00") & ":" & FORMAT(seconds, "00") & IF(minutes > 15, "#ff0000", BLANK())
Hi, @PrivateAnalytic ,
please provide some sample data in your tables (exclude sensitive data) with Text format and your expected result with backend logic and special examples. It is better if you can share a simplified pbix file. You can refer the following link to upload the file to the community. Thank you.
https://community.powerbi.com/t5/Desktop/How-to-upload-PBI-in-Community/m-p/1672886
Best Regards,
Community Support Team _ Yalan Wu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi, @PrivateAnalytic ;
You could create a column as follows:
Time in Text =
VAR Seconds =[Column1]
VAR Minutes =
INT(MOD(Seconds,3600)/60)
VAR Hours =
INT(Seconds/3600)
VAR ss =
MOD(MOD(Seconds,3600),60)
RETURN
Hours & ":" & Minutes & ":" & ss
The final show:
Then create a conditional measure.
Measure = IF(INT(MOD(MAX('Table (2)'[Column1]),3600)/60)>15, "#ff0000","black")
The final show:
Best Regards,
Community Support Team _ Yalan Wu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hello! @v-yalanwu-msft Provided is a screenshot of what what I'm using, measures created, and the end goal. I attempted creating a column and measure you provided however it didn't seem to work right
@PrivateAnalytic You should be able to use conditional formatting rules to do this.
I do try to do that, however when I try to click on the conditional formatting, and select the field, it blurs out the field. It is an already created calculation, so that is why I am trying to use dax to color.
Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!
Check out the September 2025 Power BI update to learn about new features.