Today element (Query)
Applies to: SharePoint 2016 | SharePoint Foundation 2013 | SharePoint Online | SharePoint Server 2013
Renders the current date in the format that is relative to the server's local time zone. For servers in the United States, the format is MM/DD/YYYY (for example, 1/21/2001).
<Today OffsetDays = "Integer">
</Today>
Elements and attributes
The following sections describe attributes, child elements, and parent elements.
Attributes
Attribute | Description |
---|---|
OffsetDays |
Optional Integer. Adds or subtracts the number of days that are specified by the positive or negative integer value. |
Child elements
None
Parent elements
Occurrences
- Minimum: 0
- Maximum: Unbounded
Example
The following example queries for cases where the due date is today.
<Query>
<Where>
<Eq>
<FieldRef Name="DueDate" />
<Value Type="DateTime">
<Today />
</Value>
</Eq>
</Where>
<OrderBy>
<FieldRef Name="ID" />
</OrderBy>
</Query>