RowLimit seems not working. I'm using it in CAML query to run a SSRSreport. I have to pick the Max date for each user. i sorted the user as descending and set the RowLimit element as 1. But that does not work. Any suggestions? Thanks
Edit:
<Query>
<Where>
<And>
<IsNull>
<FieldRef Name="Meeting_Type" />
</IsNull>
<Geq>
<FieldRef Name="Meeting_Date" />
<Value IncludeTimeValue="TRUE" Type="DateTime">
<Today OffsetDays="-1095"/>
</Value>
</Geq>
</And>
</Where>
<OrderBy>
<FieldRef Name="FIRM" Ascending="False" />
</OrderBy>
<RowLimit Paged="TRUE">1</RowLimit>
</Query>