Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateJoin us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register 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
Check out the July 2025 Power BI update to learn about new features.
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
User | Count |
---|---|
62 | |
61 | |
55 | |
38 | |
27 |
User | Count |
---|---|
83 | |
61 | |
45 | |
41 | |
39 |