Gt element (Query)
Applies to: SharePoint 2016 | SharePoint Foundation 2013 | SharePoint Online | SharePoint Server 2013
Arithmetic operator that means "greater than." This element is used similarly to the Eq and Lt elements.
<Gt>
<FieldRef Name = "Field_Name"/>
<Value Type = "Field_Type"/>
<XML />
</Gt>
Elements and attributes
The following sections describe attributes, child elements, and parent elements.
Attributes
None
Child elements
Parent elements
Occurrences
- Minimum: 0
- Maximum: Unbounded
Remarks
Remember that Collaborative Application Markup Language (CAML) is case-sensitive; note the lowercase "t" in the Gt element name.
Example
The following example queries for cases where the Deadline field value either equals an empty string or is later than the current date.
<Query>
<Where>
<Or>
<IsNull>
<FieldRef Name="Deadline" />
</IsNull>
<Gt>
<FieldRef Name="Deadline" />
<Value Type="DateTime">
<Today />
</Value>
</Gt>
</Or>
</Where>
<OrderBy>
<FieldRef Name="Modified" Ascending="FALSE" />
</OrderBy>
</Query>