I have a sharepoint list which has some Lookup fields. When I iterate through the items in code, i get this error: Object reference not set to an instance of an object. This error appears only on lookup fields when they are not filled in with any value. I tried to use SPFieldLookupValue to check for null values, but I still get the error.

This what I used to check for null values:

SPFieldLookupValue value = new SPFieldLookupValue(listItem[columnDisplayName].ToString()); 
if (value.LookupValue != null)

Any help guys?

link|improve this question

38% accept rate
feedback

2 Answers

The reason why you get this exception lies here: listItem[columnDisplayName].ToString() because listItem[columnDisplayName] have no value and returns null you trying to call ToString() on null object so it throws "Object reference not set to an instance of an object exception".

If you simply want to check if item field is not null then do like that:

if (listItem[columnDisplayName]!=null) 
{
    //here you can access listItem[columnDisplayName] safely
}
link|improve this answer
Hi Alexander, thanks a lot for your reply. I have been staring at it all along without realizing that I was not checking the field item for null values. In other codes I used to check field items for null, but this time I was relying on SPFieldLookUpValue thinking that it was the right way to check for nulls. Thanks again for your great help. – IH-77 Nov 21 '11 at 8:43
feedback

I had a similar problem when I started with SP2010. This post has the answer to your problem.

link|improve this answer
Hi Chris, thanks a lot for your help. It was very useful. Regards, – IH-77 Nov 21 '11 at 14:15
feedback

Your Answer

 
or
required, but never shown

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