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?