SharePoint provides a great way to filter views using inbuilt functions like Today() and Now(). They come very handy when you are required to get current date and time for any comparison or filtering.
These functions have been very popular throughout these years and work well with all SharePoint versions - MOSS, SharePoint 2010, SharePoint 2013, SharePoint 2016, SharePoint 2019 and SharePoint Online (Microsoft Office 365).
⚡️ How to use/set today's current date in calculated column --> Today()
- Open your List/Library.
- Navigate to Columns section.
- Click Create column. You may alternatively edit an existing calculated column.
- For 'The type of information in this column is:' --> select 'Calculated (calculation based on other columns)'.
- In Formula, use Today() for getting current date.
Current date in SharePoint calculated column
⚠️ Note that calculated column values are not updated automatically and only when list item is modified. It is recommended to use Power Automate / FLOW for updating the calculated field value on regular basis.
Few examples using Today()- Today() --> Gets current date
- Today()-Created --> Gets number of days in between Created Date and Current Date
- Today() + 1 --> Adds 1 day to Current Date
- For 'The data type returned from this formula is: ' --> select the format for the return value, Single line of text / Number / Currency / Date and Time / Yes/No.
- Click OK.
- Check your column and verify the calculated value is computed correctly.
⭐ IMPORTANT - You cannot use [Today] in your formula, this will result in error "Calculated columns cannot contain volatile functions like Today and Me."
Refer this link to fix it - How to use [Today] current date time in SharePoint calculated column
⚡️ How to use/set today's current date with time in calculated column --> Now()
This is similar to previous example, but more accurate up to time including minutes.- Open your List/Library.
- Navigate to Columns section.
- Click Create column. You may alternatively edit an existing calculated column.
- For 'The type of information in this column is:' --> select 'Calculated (calculation based on other columns)'.
- In Formula, use Now() for getting current date and time.
Current date time in SharePoint calculated column using Now
⚠️ Note that calculated column values are not updated automatically and only when list item is modified. It is recommended to use Power Automate / FLOW for updating the calculated field value on regular basis.
Few examples using Now()- Now() --> Gets current date + time
- Now()-Created --> Gets number of days (including hours/minutes) in between Created Date and Current Date/Time
- Now() + 1 --> Adds 1 day to Current Date (including time).
- For 'The data type returned from this formula is: ' --> select the format for the return value, Single line of text / Number / Currency / Date and Time / Yes/No.
- Click OK.
- Check your column and verify the calculated value is computed correctly.
⚡️ How to use today's current date to filter SharePoint views --> [Today]
Something which is required very frequently, filtering views to show relevant information to users. Say, displaying approval tasks which are upcoming today.- Open your List/Library.
- Navigate to Views section.
- Open the respective view.
- Navigate to Filter section.
- Select 'Show items only when the following is true:'
- For 'Show the items when column'
- Select the column from the drop down
- Select the condition which should evaluate to true
- Enter the formula to calculate using [Today]
- Click OK.
- Verify the view is filtered as expected.
-
Few examples using [Today]
- DueDate = [Today]
- DueDate <= [Today] AND Resolved=No
- ReminderDate = [Today]-2
- Created = [Today]-5
This does not stop here. Though SharePoint provides you powerful ready functions like [Today] and [Me], you will have to put in extra efforts to fulfill the actual requirement - like adding logic to skip weekends. In many cases, excel formulas may also work with SharePoint calculated fields.
⛏️ Tip - For calculated column fields, the value will not auto update unless the list item is modified. This has been a pain for developers and admins. There could be multiple possibilities to update the field value, choose the best fit for you -
- Power Automate / FLOW to update item (preferred)
- PowerShell script
- Azure Functions
- Logic Apps
- error CAML Query containing special characters
- [Solved] SharePoint Illegal operation attempted on a registry key that has been marked for deletion
- Trigger Flow on selected Listitem from SharePoint view - create button with JSON column formatting
- SharePoint Excel error - The workbook cannot be opened because it contains the following features that are not supported by Excel in the browser
- Send Email with attachment using SharePoint PowerShell, SMTP server
- How to show or hide columns in SharePoint Online List Library from
- SharePoint excel error - A problem occurred while connecting to the server. If the problem continues, contact your administrator.
- How to get SharePoint Online user details from person or group column using REST API
- How to get SharePoint List Item URL using PowerShell
- How to get the SharePoint Tenant Login URL
- Special character & not working with SharePoint REST API
- How to disable SharePoint subsite creation option for owners
- Managed Metadata error - The data returned from the tagging UI was not formatted correctly
- Deploy SharePoint wsp solution package using PowerShell
- How to create classic site in SharePoint Online
- See actual SharePoint error exception modify web.config
- 'Edit Document' Requires a Windows Sharepoint Services-compatible application and Microsoft Internet Explorer 6.0 or higher
- How to enable anonymous public access for SharePoint Online site collection, file, folder without login ?
- SharePoint installation error - Setup is unable to proceed due to the following error This product requires Microsoft .Net Framework 4.5
- How to add animated Gif to SharePoint Online Page
- [Solved] SharePoint Search Internal server error exception
- How to create SharePoint Document Library
- SharePoint - Use Today's Date Time in list view filter and calculated column
- How to redirect SharePoint Site Collection to different URL
- SharePoint error cannot connect to the configuration database
- How to change the KeyMap in Android Studio - Android-Studio
- How to delete a file using PowerShell [Windows/macOS] - Powershell
- M1/M2 Mac VirtualBox Unsupported hardware architecture detected! - MacOS
- [Docker M1/M2 Mac] qemu-x86_64: Could not open /lib64/ld-linux-x86-64.so.2: No such file or directory AWS CLI - Docker
- wget Command on macOS Terminal - MacOS
- Android Parsing Data for android-L failed Unsupported major.minor version 51.0 Error - Android
- [Fix] java: integer number too large compilation error - Java
- Setting up Java JUnit Project with Eclipse + Maven Example - Java