I need to get cellvalue while reading cell with formula in existing excel file to a List using NPOI excel nuget package. My problem is while I tried to read cell with formula in existing excel file to List, it read only cellformula in it but I need cellvalue of that cell with Formula. Example my cell has formula IF(F23=0,"None",IF(F23<1.6,"Very Low",IF(F23<=2,"Moderate",IF(F23<3,"Moderate - High",IF(F23>=3,"Very High"))))) and my cell values be like "None","Moderate","Moderate - High","Very High". I want to read those cellvalues but it read Formula inside it.
↧