Welcome toVigges Developer Community-Open, Learning,Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
3.9k views
in Technique[技术] by (71.8m points)

How to format sharepoint list based on what weekday it is viewed

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.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)
等待大神解答

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to Vigges Developer Community for programmer and developer-Open, Learning and Share
...