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 for a free trial.
This beginner’s guide does not require a background in coding.
Let’s go!
Don’t Feel Like Reading?
Watch the YouTube Video and Learn How to Use Five to Convert Your Excel Spreadsheet Into a 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:
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:
Product | Price | Quantity |
Product 1 | 4.99 | 100 |
Product 2 | 5.99 | 4 |
Product 3 | 100.99 | 58 |
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.
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“, which lists all your products. Then, add 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 the table above, 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, and that every record only stores one piece of data.
In our example, the correct way to deal with discounts would be to create three separate columns: Price, Discount, Discounted Price.
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.
To go from Excel to web app without too much trouble, it is advisable to spend some time looking at your existing data and making sure it’s clean. As the saying goes: a stitch in time saves nine!
Here are our three favorite Excel functions for clean data:
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?
If so, it’s time to move to Step 2 to convert your Excel to a web app: setting up your database.
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.
Sign up for free access to Five. You’ll be greeted by a screen that looks like this:
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):
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.
2. Now click on Data and then on 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.
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.
4. A popup asking about a Table Upgrade appears next. Click on Save.
Now let’s import our data from our Excel spreadsheet.
5. First, go to Data > Tables.
6. 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 find it:
To import your data make sure it is stored in a CSV file. If you’d like to work with sample data, download our CSV file here.
8. 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.
9. Next, click on Choose File and find the Inventory.csv file. Upload it.
10. 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.
11. For InventoryKey select Generated. Five will now automatically generate a unique primary key for every record in your CSV file.
12. For Total, select Not Imported from the dropdown box.
13. 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 finally launch and preview it.
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.
Five makes it easy to build a form for your end-users. To get started, click on Visual and then on 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.
It is time to preview our 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:
2. Select the Default instance, and then click on the Cloud icon:
3. This is the screen that you will see now. To preview your application inside your browser, click the button shown here:
4. Launching your application for the first time will take a few seconds. Once launched or deployed successfully, your screen will look like this.
5. Now, click the Run button to launch and preview your application in your browser.
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:
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 tutorial’s next steps below.
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:
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.
In case you get stuck during the development process, we’re here to help! Continue developing your application by accessing these resources:
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.
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.
Select one of our hosting packages.
Starting from US$29.99 per app and month.