How to calculate number of outstanding days in SharePoint? I've been using the formula below but it is not stable
=IF([Document Status]="",TODAY()-[Initiated On]+1,[Date Reviewed]-[Initiated On])
How to calculate number of outstanding days in SharePoint? I've been using the formula below but it is not stable
=IF([Document Status]="",TODAY()-[Initiated On]+1,[Date Reviewed]-[Initiated On])
Formulas will only update when the List Item is modified/updated.
That means Today() is the same as [Modified] (last date the item was modified)
For long explanation and possible workarounds read:
You can display outstanding days using CSR (Client Side Rendering).
The conventional way is to write JS code and inject it in the library view. More details here: https://code.msdn.microsoft.com/office/Client-side-rendering-JS-2ed3538a
A quicker way to customize a specific library view is Cisar: https://chrome.google.com/webstore/detail/cisar/nifbdojdggkboiifaklkamfpjcmgafpo?hl=en