Calculated fields in CAML
Monday, September 26th, 2005So you have a SharePoint list with a calculated field. You want to select items based on the calculated field beginning with some specific substring. You write a CAML query:
<Where> <BeginsWith> <FieldRef Name=”SortDate” /> <Value Type=”Calculated”>200509</Value> </BeginsWith> </Where>
This won’t work. (At least on my [...]
