Hi,
Can someone tell me how to verify array. I read excel file and store it in the
range array. However, if excel sheet some cell is empty. then if I use ex:
CellValue[1][1] eq "" will give me exception error. How can I check this

thank you

Range = objSheet.Range("A" & row & ":K" & row+1);
CellValue = Range.Value;

if (Cellvalue[1][1] eq "") -> it will give me the error.