How to open Excel sheet with full access in c#?

Is there any way that I can access the cells in an Excel sheet using Python?

  • Answer:

    Sure there's a way, but you'd be best served using an open-source library that knows how to parse an Excel file.  One library is https://github.com/python-excel.  Here's an example of how it's done, using one of their test cases: book = xlrd.open_workbook(from_this_dir('your-excel-file.xls'), formatting_info=True)sheet = book.sheet_by_name('some-sheet-name')cell_value = sheet.cell(1, 1).value You just need the "xlrd" library if you're just reading. Another option is https://pythonhosted.org/openpyxl. Here's an example using this library: book = load_workbook(filename = r'your-excel-file.xlsx')sheet = wb['some-sheet-name']cell_value = sheet['A1'].value

Scott Danzig at Quora Visit the source

Was this solution helpful to you?

Other answers

Request to give more details in steps may be for better understanding.

Ahmed Ali Siddique

Just Added Q & A:

Find solution

For every problem there is a solution! Proved by Solucija.

  • Got an issue and looking for advice?

  • Ask Solucija to search every corner of the Web for help.

  • Get workable solutions and helpful tips in a moment.

Just ask Solucija about an issue you face and immediately get a list of ready solutions, answers and tips from other Internet users. We always provide the most suitable and complete answer to your question at the top, along with a few good alternatives below.