I am creating a excel file by closedxml. I am able to set its cell value as shown below.
worksheet.Cell(rowPosition, cellPosition).Value="abc";
What I need is to set an Id of that cell which relates to its value and which is not visible to user. So when I again read this excel file programatically I can use this Id filed as Id is unique for me but not text.
Thanks in advance