Read Excel Online



  1. Excel Online Read Only
  2. C# Read Excel Online
  3. Read An Excel File Online

Writing Excel files: The example files datasets.xlsx and datasets.xls were created with the help of openxlsx (and Excel). Openxlsx provides “a high level interface to writing, styling and editing worksheets”. The Excel Viewer is an official tool developed by Microsoft, to make it easy (and free) for you to handle Excel files. Excel Viewer has been around for more than 20 years. In 2008, Microsoft gave the Excel Viewer an overhaul and updated the whole thing.

You can easily import an Excel file into Python using Pandas. In order to accomplish this goal, you’ll need to use read_excel.

In this short guide, you’ll see the steps to import an Excel file into Python using a simple example.

But before we start, here is a template that you may use in Python to import your Excel file:

Note that for an earlier version of Excel, you may need to use the file extension of ‘xls’

And if you have a specific Excel sheet that you’d like to import, you may then apply:

Let’s now review an example that includes the data to be imported into Python.

The Data to be Imported into Python

Suppose that you have the following table stored in Excel (where the Excel file name is ‘Product List’):

ProductPrice
Desktop Computer700
Tablet250
iPhone800
Laptop1200

How would you then import the above data into Python?

You may follow the steps below to import an Excel file into Python.

Steps to Import an Excel File into Python using Pandas

Step 1: Capture the file path

First, you’ll need to capture the full path where the Excel file is stored on your computer.

For example, let’s suppose that an Excel file is stored under the following path:

C:UsersRonDesktopProduct List.xlsx

In the Python code, to be provided below, you’ll need to modify the path name to reflect the location where the Excel file is stored on your computer.

Don’t forget to include the file name (in our example, it’s ‘Product list‘ as highlighted in blue). You’ll also need to include the Excel file extension (in our case, it’s ‘.xlsx‘ as highlighted in green).

Online

Step 2: Apply the Python code

And here is the Python code tailored to our example. Additional notes are included within the code to clarify some of the components used.

Step 3: Run the Python code to import the Excel file

Run the Python code (adjusted to your path), and you’ll get the following dataset:

Notice that we got the same results as those that were stored in the Excel file.

Note: you will have to install xlrd if you get the following error when running the code:

ImportError: Install xlrd >= 1.0.0 for Excel support

You may then use the PIP install approach to install xlrd as follows:

Optional Step: Selecting subset of columns

Now what if you want to select a specific column or columns from the Excel file?

For example, what if you want to select only the Product column? If that’s the case, you can specify this column name as captured below:

Run the code (after adjusting the file path), and you’ll get only the Product column:

You can specify additional columns by separating their names using a comma, so if you want to include both the Product and Price columns, you can use this syntax:

You’ll need to make sure that the column names specified in the code exactly match with the column names within the Excel file. Otherwise, you’ll get NaN values.

So far, you have seen how to import an Excel file into Python by specifying the path name within the code.

ReadFree

But did you know that you could also import the Excel file without specifying the path?

In the final section below, you’ll see the code to create a simple interface to import Excel files in a streamlined manner.

Excel Online Read Only

Simple Interface to Import an Excel file

You may use the code below to import an Excel file into Python:

Once you run the code, you’ll see a display with a single button to import the Excel file:

Simply click on the button and then choose the location where your Excel file is stored.

Read

Conclusion

You just saw how to import an Excel file into Python using Pandas.

C# Read Excel Online

At times, you may need to import a CSV file into Python. If that’s the case, you may want to check the following tutorial that explains how to import a CSV file into Python using Pandas.

Read An Excel File Online

You may also check the Pandas Documentation to find out more about the different options that you may apply in regards to read_excel.