Leq element (Query)
Applies to: SharePoint 2016 | SharePoint Foundation 2013 | SharePoint Online | SharePoint Server 2013
Arithmetic operator that means "less than or equal to." The Leq element is used in view queries similarly to the Eq and Geq elements.
<Leq>
<FieldRef Name = "Field_Name"/>
<Value Type = "Field_Type"/>
<XML />
</Leq>
Elements and attributes
The following sections describe attributes, child elements, and parent elements.
Attributes
None
Child elements
Parent elements
Occurrences
- Minimum: 0
- Maximum: Unbounded
Example
The following example queries for cases where the Expires field value either equals an empty string or is less than or equal to the current date.
<Query>
<Where>
<Or>
<IsNull>
<FieldRef Name="Expires" />
</IsNull>
<Leq>
<FieldRef Name="Expires" />
<Value Type="DateTime">
<Today />
</Value>
</Leq>
</Or>
</Where>
<OrderBy>
<FieldRef Name="Modified" Ascending="FALSE" />
</OrderBy>
</Query>