vote up 0 vote down star

I want to select a sharepoint list item which has the Maximum value for a particular column. How can I do this using CAML queries?

flag

47% accept rate

3 Answers

vote up 0 vote down

This can be done ordering by this field in descending way and taking the first element of the collection returned.

link|flag
vote up 3 vote down
<Query>
    <OrderBy>
            <FieldRef Name="particularcolumn" Ascending="FALSE" />
    </OrderBy>
</Query>
link|flag
vote up 1 vote down

The following CAML query would return the maximum value for a given column:

var maxValue;

try
{
    using (SPSite objSite = new SPSite(sSiteUrl))
    {
    	using (SPWeb objWeb = objSite.OpenWeb())
    	{
    		SPList objList = objWeb.Lists[sListName];

    		SPQuery objQuery = new SPQuery();
    		objQuery.Query = "<OrderBy><FieldRef Name='ColumnName' Ascending='False' /></OrderBy><RowLimit>1</RowLimit>";
    		objQuery.Folder = objList.RootFolder;

    		// Execute the query against the list
    		SPListItemCollection colItems = objList.GetItems(objQuery);

    		if (colItems.Count > 0)
    		{
    			maxValue = (<Insert Appropriate Cast>) colItems[0];
    		}
    	}
    }
}
catch (Exception ex)
{
    ...
}

return maxValue;
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.