I have an excel file stored in SharePoint document library. I need to read this excel file and get the data Programmatically from the file path.
string rangeName = "Sheet1!D43";
string value = GetRangeValue("abc.xslx", rangeName);
string url =
"http://sharepoint1.net/excel/_vti_bin/ExcelRest.aspx/docs/" +
workbookName + "/model/Ranges('" + rangeName + "')?$format=HTML";
Here, When I keep this link in browser, I get the desired value in HTML. Now, how can I get it in the c# code.