Read data from Excel.Range: undefined Value!
I have a problem reading data from Excel.Range. Here is how I did:
Object[,] saRet;
saRet = (System.Object[,])range.get_Value(Missing.Value );
The problem is some elements in saRet are "undefined values"
I noted that the reason is that those corresponding cell contain formula not values directly.
Does any one know how to get around it?
Thanks.

