Hi @Andrews, Rob ,
You can use this Json code to format the Start Date column.
{
"$schema": "https://developer.microsoft.com/json-schemas/sp/column-formatting.schema.json",
"elmType": "div",
"style": {
"background-color": "=if(Number([$DueDate_x002d_5mo])-Number(@currentField)>0 ,'Green', if((Number(@currentField)-Number([$DueDate_x002d_5mo])>0 && Number([$DueDate_x002d_3mo])-Number(@currentField)>0), 'yellow', 'red'))",
"color": "black"
},
"txtContent": "@currentField"
}
The running result is as below:
If the answer is helpful, please click "Accept Answer" and kindly upvote it. If you have extra questions about this answer, please click "Comment".
Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.