I have this code that changes the background color of items in a column if they were created within 23 h. How can i make it so that on mondays, this is 72 hrs instead of 23?
{
"$schema": "https://developer.microsoft.com/json-schemas/sp/column-formatting.schema.json",
"elmType": "div",
"txtContent": "@currentField",
"style": { "background-color": "=if([$Created] >= (@now - 82800000), '#00ff00', ''" }
}
I.E
When viewing the list on mondays:
"background-color": "=if([$Created] >= (@now - 259000000), '#00ff00', ''"
When viewing the list any other day:
"background-color": "=if([$Created] >= (@now - 82800000), '#00ff00', ''"
Have tried many things but nothing has worked so far.
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…