Today Element (Query)

Applies to: SharePoint Foundation 2010

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  Offset = "Integer">
</Today>

Attributes

Attribute

Description

Offset

Optional Integer. Adds or subtracts the number of days that are specified by the positive or negative integer value.

Child Elements

None

Parent Elements

Value

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>

See Also

Reference

Month

Now

TodayISO