vote up 1 vote down star
1

I have a calculated field in a list with this formula: =CID & " - " & Title. When viewing the list, it might display as: "2 - Big Meeting". When I grab the value from code like so: myItem["CIDandTitle"] the value comes back as: "string;#2 - BigMeeting". Is there a "correct" way in sharepoint to extract the value or should i simply split on the semicolon and pound sign?

I am using MOSS2007.

flag

68% accept rate

3 Answers

vote up 4 vote down check

You have to cast it to an SPCalculatedField:

SPFieldCalculated cf = (SPFieldCalculated)myItem.Fields["CIDandTitle"];
string value = cf.GetFieldValueForEdit(myItem["CIDandTitle"]);

or

string value = cf.GetFieldValueAsText(myItem["CIDandTitle"]);
link|flag
That works; as does cf.GetFieldValueAsText(myItem["CIDandTitle"]). This approach seems clunky though. – Chloraphil May 22 at 15:07
less clunky than splitting on the semicolon and hash... – Nathan DeWitt May 22 at 15:11
1  
I had issues trying to get a float this way. I used myItem.GetFormattedValue("floatValue"); – bryanbcook Aug 27 at 14:25
vote up 0 vote down

Very good usefull post! Thanks!!!

link|flag
vote up 0 vote down

I have a similar field of type note in which values are stored ';#' seperated. As I am storing the multiple values in databse seperated by ';#'.

In edit mode i display these values in listbox which will support multiple selection.

Only issue is in view properties mode the values are shown as ';#' seperated and my reqmt is to show them as ',' seperated.

I have the function GetValueasText in my custom field - but no effect..

Any input on this will be appreciated.

Thanks, Poonam

link|flag
Poonam, you should ask a new question with your problem. – Chloraphil Oct 21 at 18:36

Your Answer

Get an OpenID
or

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