I am trying to update the date in a column to show Today's date and automatically update it every day in SharePoint 2013.
Can someone help? How to achieve this?
A front-end or client-side approach would be best.
I am trying to update the date in a column to show Today's date and automatically update it every day in SharePoint 2013.
Can someone help? How to achieve this?
A front-end or client-side approach would be best.
The Today() function inside a Calculated Column Formula is correct,
But only if the Item (or formula itself) was updated TODAY
Much written about:
So your use-case requires a trigger to update the Items daily, either a workflow,
OR Client Side code:
Create unique number with ListItem [ID] and [Today] age in Calculated Column Formula
Explains how to do it from a Calculated Column in a view; but the encapsulated JavaScript code can be used in any SharePoint page. CSR in a ListView the more obvious.