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!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
Hi all,
Hope someone can help me with the following.
Below is a simple table.
What I want is the following;
If the TIME_TO_COMPLETE is more than 00:20 and the MODALITY_OUT is TRUCK, the time to complete value must shown up in YELLOW.
Is there a formula to do so?
Thanks for your help!
John
Solved! Go to Solution.
@Anonymous , hope time complete is a measure the color measure
if( [TIME_TO_COMPLET] >= time(0,0,20) && [MODALITY_OUT] = "TRUCK" , "Yellow", "White")
Use in conditional formatting using field value option
[TIME_TO_COMPLET] >= 20 // if time in second and formatted as time
@Anonymous , hope time complete is a measure the color measure
if( [TIME_TO_COMPLET] >= time(0,0,20) && [MODALITY_OUT] = "TRUCK" , "Yellow", "White")
Use in conditional formatting using field value option
[TIME_TO_COMPLET] >= 20 // if time in second and formatted as time
User | Count |
---|---|
98 | |
76 | |
75 | |
49 | |
27 |