im currently working on a project that reads data from excel using closedXML but im having errors with my code because the excel cells have vlookup formulas in it. is there a way for closedxml to read row values with vlookup formulas? Thanks!
this is where i get the "Syntax Error" error:
if (rowValue.Cell(colnum).HasFormula)
{
((IDictionary<String, Object>)item)[field] = rowValue.Cell(colnum).Value.ToString();
}