1

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.

Ganesh Sanap - MVP
  • 44,918
  • 21
  • 30
  • 61
joe 222
  • 31
  • 6

1 Answers1

1

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.

Related:

Danny '365CSI' Engelman
  • 21,176
  • 7
  • 35
  • 79