Hi RASoul,
Good day! Welcome to Q&A forum.
To Format a Column as "Updated" if "Modified" <7 days ago, you'll need to use JSON formatting with a proper date comparison formula. Here's an example how to implement this:
{
"$schema": "https://developer.microsoft.com/json-schemas/sp/v2/column-formatting.schema.json",
"elmType": "div",
"txtContent": "@currentField",
"style": {
"background-color": "=if([$Modified] >= @now - 604800000, '#FFF100', 'transparent')",
"padding": "0 4px",
"border-radius": "3px"
}
Hope these information helps.
Please do let us know if you have any further queries.
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.