Are calculated columns in SharePoint 2010 indexable? I have found no definitive answer either way but there seems to be some support for 'yes'.
A follow up question: how to problematically (in C# as opposed to XML) represent a formula for the column that contains strings?
Not sure which quotes should be double ("
), single ('
), or escaped (/"
or /'
) or something else.
Example:
myCalculatedColumn.Formula = "=IF([colA]='somestring', 'thenThisString', 'elseThisString')"
Thank you.