Hi @McClure, Christopher ,
Thank you for posting in this community.
If you want the entire line to turn red if the current time exceeds the estimated time, use the following view json format.
Here are steps:
1."All Items"->"Format current view"
2."Advanced mode"
3.Use the following view json format.
{
"$schema": "https://developer.microsoft.com/json-schemas/sp/v2/column-formatting.schema.json",
"additionalRowClass": "=if([$data] <= @now, 'sp-field-severity--blocked',if([$data] <= @now + 1800000 && [$data] > @now,'sp-field-severity--warning', 'sp-field-severity--good'))"
}
Reference: https://learn.microsoft.com/en-us/sharepoint/dev/declarative-customization/view-list-formatting
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.