I have a calculated field in my list and I am trying to use filter on this field. For some reason, the following query always returns all items instead of a filtered item collection.

Could you please help me out with this?

var spQuery = new SPQuery
    {
        Query = @"<Where><Geq><FieldRef Name='Score' /><Value Type='Calculated'>10000</Value></Geq></Where><OrderBy><FieldRef Name='Modified' Ascending='True' /></OrderBy>",
        RowLimit = 200,
        ViewFields = @"<FieldRef Name='Username' />"
    };

var spList = web.Lists["Users"];

var spListItemCollection = spList.GetItems(spQuery);
link|improve this question

feedback

2 Answers

Remove the query element from your SPQuery. See syntax here

link|improve this answer
Still no luck. Please check out the details updated. – Moon May 15 '11 at 23:10
1  
I have seen this before. From what I have tested so far, calculated fields cannot be used for filtering. I tried earlier in a CQWP and could not find any way to compare on calculated fields no matter what data type they were defined as – Anders Rask May 16 '11 at 7:27
feedback

Try removing ViewFields section (to get all columns, also those that are needed for calculation) or set SPQUery.IncludeMandatoryColumns

link|improve this answer
Sorry, it didn't work. – Moon May 17 '11 at 14:34
feedback

Your Answer

 
or
required, but never shown

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