How can I get name of the Excel named range from cell range?
For example, I'm naming "A1" cell as "Test" in Excel editor, then I want to get this name in C# from "A1" Excel range.
Following is what I tried but it`s not giving me the result I require.
Xcelrng = (Excel.Range)Excel.Application.Cells[XcelRow, XcelCol];
From any other excel elements like value, formula, address I use, I am also unable to get the name of the named range.