Hi
I use C# to read excel file.So user has to enter path of the excel file into application.However problem is, if there is null value in excel sheet for particular column then it generate the exception.so i want to create another application that check null ,how do I find the null value in excel sheet.
This is way I get the value ,
String value = worksheet.get_Range(col.columnCode + i, col.columnCode + i).Value2.ToString();
Thanks
Tank50