Forum Discussion
Dates Traffic Light
- 5 years ago
I corrected your measure and conditional formatting.
Please find an attachment.
Proud to be a Super User.
If I helped, please accept the solution and give kudos!
Linkedin - Anonymous5 years ago
Hi PabloGiraldo ,
Here are the steps you can follow:
1. Create calculated column.
day = DATEDIFF(MAX(Submittals[Required date]),TODAY(),DAY)2. In Format, select Conditional formatting, select the field Indicator, and turn it on
3. Select Format by as Rules and Based on field as [day]
Grant conditions:
Red: 0<=day<30
Yellow: 30<=day<45
Green: 45<=day<90
Date more than 90 days to differentiate from a small green circle
4. Result.
You can downloaded PBIX file from here.
Best Regards,
Liu Yang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi PabloGiraldo ,
Here are the steps you can follow:
1. Create calculated column.
day = DATEDIFF(MAX(Submittals[Required date]),TODAY(),DAY)2. In Format, select Conditional formatting, select the field Indicator, and turn it on
3. Select Format by as Rules and Based on field as [day]
Grant conditions:
Red: 0<=day<30
Yellow: 30<=day<45
Green: 45<=day<90
Date more than 90 days to differentiate from a small green circle
4. Result.
You can downloaded PBIX file from here.
Best Regards,
Liu Yang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
- PabloGiraldo5 years agoHelper IV
Thank you!