Calculating... until our next FREE Code-Along Session. Secure your spot now

Excel to Web App [Quick, Easy & Free 3-Step Tutorial]

Avatar photo
Dominik Keller
Feb 5th, 2024
Blog

Convert Your Excel Spreadsheet into a Web Application [Excel to Web App – Part 1]

Are you planning to go from Excel to web app?

Here’s a quick and easy tutorial to explain how you can convert an Excel spreadsheet into a web application. We will be using Five’s free trial to build our prototype application – so before we get started make sure to sign up and install Five for free.

This beginner’s guide does not require a background in coding.

Let’s go!


Go From Excel to Web App
Convert Spreadsheets to Web Apps with Five





Don’t Feel Like Reading? 

Watch the YouTube Video and Learn How to Use Five to Convert Your Excel Spreadsheet Into a Web App.


Convert Your Spreadsheet Into a Beautiful Web App

This blog post is part 1 of a 5-part series on converting Excel spreadsheets to web apps. To view the other parts, follow the links here:


Step 1: Clean Up Your Spreadsheet

Before we start building our web app, it is important that our Excel spreadsheet stores data in the correct format.

To do so, make sure that your spreadsheet’s first row contains descriptive names of the data stored in each column.

For example, let’s say your spreadsheet contains information on Products, Prices, and Quantities.

Here’s what your Excel spreadsheet should look like:

ProductPriceQuantity
Product 14.99100
Product 25.994
Product 3100.9958

Unfortunately, the real world is rarely as well-structured as this spreadsheet. So here are a few points to note:

1. Make sure that your header row (row 1) only contains descriptive names for what is stored in each column.
In our case, our header row contains Product, Price, and Quantity. Pick descriptive names for your columns and avoid adding unnecessary additional content to them.

2. Do not repeat the same information in multiple columns.
For example, it is not advisable to have one column for “Products (non-perishable)” and another column for “Products (perishable)“. Instead, have one column for “Product“, and another column that classifies them as “Perishable” or “Non-Perishable”.

3. Make sure that each cell only contains one piece of data.
For example, in our case, it might be tempting to add discount information to our pricing, such as “5.99 (discounted to 4.99)“. Don’t. If you do so, this data point is no longer usable in a calculation. Always make sure that every column only has one type of data such as text, numbers, options, or currencies.

4. Even if you have multiple values of the same item, do not put all of them into the same cell.
For example, sometimes we might have more than one email address for a customer. How should we deal with this scenario in our spreadsheet? The correct way to set this up is to have multiple “Email” columns, such as “Primary Email“, “Secondary Email“, or “Work Email” and “Personal Email”. Do not store multiple emails in one cell.


Expert Tip: Useful Excel Commands For Cleaning Up Your Spreadsheet

To go from Excel to web app without too much trouble, it is advisable to spend some time looking at your existing data and make sure it’s clean. As the saying goes: a stitch in time saves nine!

Here are our three favorite Excel functions for clean data:

  1. TRIM: Excel’s TRIM function deletes all leading, trailing, and in-between spaces except for a single space character between words. This works great for misspelled names.
    Say some of your customers have misspelled their names when signing up on your website, such as “JohnDoe”, or “Jane Doe □□□“. The trim function will convert these two entries to “John Doe” and “Jane Doe”.
  2. CLEAN: The CLEAN function removes all nonprintable characters from text. This is useful if your database contains names with special characters that didn’t get pasted correctly into your Excel, or if you have line breaks in your cell.
  3. PROPER: The PROPER function converts the first character to upper case and all other characters into lower case.
    For example, the function will convert “JOHn DoE” into “John Doe”.

Later in this article, we will introduce you to a few helpful features that will make it easier for you to collect clean data in your web app.


CHECKLIST: Does your Excel spreadsheet fulfill the criteria above?

  1. Your header row (row 1) only contains descriptive column names?
  2. Every column contains unique information related to the column header?
  3. Every cell in the same column contains only one piece of data of the same data type, such as a piece of text, numbers, etc?
  4. Multiple data points of the same category are split across multiple columns?
  5. Your data has been cleaned up using some of Excel’s built-in functions?

If so, it’s time to move to Step 2 to convert your Excel to a web app: setting up your database.


Step 2: Setting Up Your Database and Importing Data

Thanks to the work we just did in Step 1, going from Excel to a web app will be a lot easier now that we’re starting with Step 2: setting up your database.

Having a database as your application backend is a critical step in converting Excel spreadsheets to web apps. We recommend MySQL, the world’s most popular open-source database.

To create our database, we will use Five, which has a handy and easy-to-use visual database designer. Using Five’s database designer, we can create a database table entirely in point-and-click. Make sure to sign up for a free Five trial to follow along.

1. Create a New Application in Five

Sign up for free access to Five in your web browser. You’ll be greeted by a screen that looks like this:

Five.Co - Landing Page

  1. Click on Applications near the top left corner of the screen, and right below the hamburger menu icon.
  2. Now, click on the yellow Plus icon. A new window “New Applications Record” will appear.
  3. Give your application a Title, such as “Excel to Web App”.
  4. Save by clicking the Tick Mark in the top right corner.

Here’s what your screen should now look like. If “Excel to Web App” is your first application, you will not see any other applications in the list on the left:


2. Create Your Database and Import Data

It’s time to build your database and import your data.

1. To start click the blue Manage button on the top right of the screen near the Five logo.

Five.Co - Excel to Web App - Manage Button

2. Now click on Data and then on Table Wizard.

Five.Co - Table Wizard

Let’s go ahead and create our first database table.

  1. Give your table a Name. Let’s go with Inventory.
  2. Now click on the Plus icon on the right side of the screen. Click the plus icon four times to create four database fields:
    Field 1 will hold information about our products, so we give it the name Product and select text as its data type. We also give it a size of 100.
    Field 2 will hold information about Price. Its data type is float and its display type is float.2.
    Field 3, Quantity is an integer for its data and display type.
    Field 4, Total will be used to perform a calculation in the second part of the application development process.
  3. Save by clicking the Tick mark. Before you save, make sure that your table looks exactly like this:

Now let’s import our data from our Excel spreadsheet.

First, go to Data > Tables.

Now click on the Import CSV into Table icon to get started. It’s located to the left of the yellow plus icon with a small arrow pointing down into a box. See the image below to locate it:

Five.Co - Data Import

To import your data make sure it is stored in a CSV file. If you’d like to use the data provided above, download our CSV file here.

  1. Five’s Import Data feature lets you select the database table you’d like to import data into.
    In our case, there is only one table: our Inventory table. So go ahead and select it from the dropdown box.
  2. Next, click on Choose File and find the Inventory.csv file. Upload it.
  3. Five will automatically map the fields of your CSV file to your database fields, provided you have been following this tutorial and your database fields have the same name as the top row of your CSV file.
  4. For InventoryKey select Generated. Five will now automatically generate a unique primary key for every record in your CSV file.
  5. For Total, select Not Imported from the dropdown box.
  6. Click on the Tick mark to upload your data.

Congratulations! You have now created a database table in a MySQL database and have populated it with data!

In the third and last step, we will add a form to our application and launch and preview it.


Step 3: Adding a Form and Previewing Your Application

We have already created our application backend: a relational database with a single table that stores information about our products, prices, and quantities. But a database is not a web app. Our database needs a front-end or graphical user interface so that users can interact with the data.

So let’s move on to step 3 of converting our Excel to a web app.

1. Adding a Form

Five makes it easy to build a form for your end-users. To get started, click on Visual and then on Form Wizard.

Five.Co - Form Wizard

There’s only one thing you need to do in the form wizard. Select Inventory as your Main Table.
Save by clicking the Tick mark.

Five.Co - Form Wizard - Creating a form

It is time to preview our application!

2. Preview Your Application

Click on the Run ▶️ button at the top right corner. If you cannot see the Run button, you need to activate it first. Here’s how to do this:

  1. Click on Setup, and then on Instances.

2. Select the Default instance, and then click on the Cloud icon:


3. This is the screen that you will see now. To deploy your application into development click on the button shown here:


4. Your first deployment will take a few seconds. Once deployed successfully, your screen will look like this.


5. Now, click the Run :arrow_forward: button to launch and preview your application in your browser.

Five.Co - Excel to Web App - Launching the Application

Here’s what your application looks like:


Five gives you a fully auto-generated front-end, including the form that you have just developed using Five’s Form Wizard, as well as:

  1. A menu on the left,
  2. A search bar on the top,
  3. A filter next to your search to filter through your data, and
  4. The ability to add, edit, or delete records from your database through the graphical user interface.

In short, we have just created the first prototype of a web application that runs on a searchable online database.

To keep building this application, follow the next steps of this tutorial below.


Excel to Web App: Next Steps

Well done! You have successfully built and deployed your first web application in Five. Instead of managing your data in an Excel spreadsheet, you can now use a modern web application to store, retrieve, and process your data. And it took only three steps to go from Excel to web app!

Five’s prebuilt user interface has automatically created an Inventories menu item for you. You can also see your Products in the list to the left of the screen. Last, by selecting one of the products, you can see its details, and make changes to them as necessary. Five also comes with a pre-built search and filtering feature.

What else can you develop in Five? Plenty of things! Check out this screenshot of a finished application to get a sense of what’s possible:

Five.Co - Five Uses the Admin Panel Web App Template

Next, check out Part 2 of this guide and learn how you can add calculations to your application. For example, let’s calculate the Total field in our form.

You can also change the design of your application by adding a theme to it. This will make your web app look more professional and unique.

You can also add a login and terms & conditions consent screen to your application and give users different roles and permissions to access data.

With charts or dashboards, you can let users perform analytics and provide business intelligence.

Last, you can show your data in an editable grid by following our Northwinds tutorial.

Remember how at the top we spoke about capturing clean data? Why not add a few data validation rules to your application?

In short, we have barely scratched the surface of what’s possible in Five! For further inspiration on what can be built in Five, visit our Use Cases or keep following our tutorial by adding a calculation to your application.


Finding Help in Five

In case you get stuck during the development process, we’re here to help! Continue developing your application by accessing these resources:

  1. Five’s User Community: Visit https://five.org to ask questions or get inspiration from other users.
  2. Five’s Documentation: Visit help.five.org to access Five’s comprehensive documentation.

Five’s In-App Help

Last, find useful tips for your application development by clicking on Five’s in-app help available in the top right corner or on almost any field.


Get Your App Online For US$29.99 Per Month

To deploy your application online, sign up for one of our paid plans, starting from US$29.99 per month and application. Your plan includes unlimited end-users and provides you with a custom URL to access the application online.

Host Your App Online

Select one of our hosting packages.
Starting from US$29.99 per app and month.
Unlimited end-users.

Free Training

Go from Excel to web app faster. Join our FREE app development training


Start developing your first application!

Get Started For Free Today

Sign Up Free Book a demo
Develop your first application with Five now. Start Free

Thank you for your message!

Our friendly staff will contact you shortly.

CLOSE