How can I open existing excel ? I don’t find an option “open” popping when I enter workbook keyword.
@AnnJose,
You can load existing excel file with the code below:
// Open existing workbook
Workbook workbook = new Workbook(path + "FileName");
// Access first worksheet in workbook
Worksheet sheet = workbook.Worksheets[0];
...
Please visit the documentation for further information about working with excel files.
You are welcome. Feel free to contact us any time if you need further help or have some other queries or issue, we will be happy to assist you soon.