
Before you begin
- Labs create a Google Cloud project and resources for a fixed time
- Labs have a time limit and no pause feature. If you end the lab, you'll have to restart from the beginning.
- On the top left of your screen, click Start lab to begin
Create a chart
/ 25
Create a scatter chart and combo chart
/ 40
Use the SPARKLINE function
/ 25
Publish a spreadsheet
/ 10
For this lab you read through a fictitious business scenario. By completing the various lab activities, you assist the characters with their Google Sheets usage.
Thomas Omar and Seroja Malone started On the Rise Bakery as a small family business to share their love of international flavors and nostalgic baked goods. They expanded from New York City to across North America and now have bakeries around the world. As the company has grown, they have hired staff to help oversee daily operations for multiple locations.
Google Sheets has several built-in tools that make it easy to create and share useful charts and reports so that you can quickly visualize data (without having to leave the spreadsheet).
In this lab, you develop charts to help On the Rise Bakery visualize its location and sales data.
You learn how to perform the following tasks:
If you’re new to Google Sheets, the following courses are recommended: Google Sheets, Google Sheets - Advanced Topics.
You might also find it helpful to complete the following lab: Google Sheets: Getting Started.
Read these instructions. Labs are timed and you cannot pause them. The timer starts when you click Start Lab and shows how long Google Workspace resources are available to you.
This Google Workspace hands-on lab lets you do the lab activities yourself in a real cloud environment, not in a simulation or demo environment. It does so by giving you new, temporary credentials that you use to sign in and access Google Workspace for the duration of the lab.
To complete this lab, you need:
When you are ready, click Start Lab in the upper left panel.
The Lab Details pane appears with the temporary credentials that you must use to sign into Gmail for this lab.
If you need to pay for the lab, a pop-up opens for you to select your payment method.
Click Open Google Drive.
The lab spins up resources, and then opens another tab that shows the Sign in page.
Tip: Open the tabs in separate windows, side-by-side.
If necessary, copy the Username below and paste it into the Sign in dialog.
Click Next.
Copy the Password below and paste it into the Welcome dialog.
Click Next.
Accept all terms and conditions as prompted.
Google Drive opens and you are signed in to the Student Google Account.
In this task, you create and customize a chart that displays On the Rise Bakery locations.
In the left panel of the lab instructions, right-click Open Google Drive, and then click Open link in incognito window to sign into your lab student account.
In the upper-right corner of Google Drive, click the Settings icon (), and then click Settings to open the settings page.
Check the box to Convert uploads to Google Docs editor format.
In the upper-left corner of the settings page, click the back arrow to return to the Google Drive homepage.
Click On the Rise Bakery Sales and Locations to download a spreadsheet.
In the left pane, click New > File upload.
Select the file on your computer named On the Rise Bakery Sales and Locations.xlsx.
When you see Upload complete in the lower-right, your file has uploaded successfully.
Double-click on the newly uploaded file to open it, and then exit out of the Google Drive tab.
To select all the items in column E of the Locations sheet, click the gray column label.
To create a chart, at the top, click Insert > Chart.
You should see a pie chart appear on the screen.
(Optional) Click the chart and drag the blue markers to resize it.
You can use pie charts to compare parts of a single data series to the whole. As a best practice, pie charts should include five or fewer categories. Don't use a pie chart to represent exact values because differences in angles and areas can be difficult to understand.
In the Chart editor pane, for Chart type, select Column chart.
Google Sheets automatically suggests chart types based on the characteristics of the data, but you are not limited to using only the suggested options.
To change the appearance of the chart, click the Customize tab.
Expand the Chart & axis titles section, and then change the chart title to Locations by Continent
Expand the Series section, and then, next to Format data point, click Add.
In the Select data point dialog, for Data point, select Continent: South America, and then click OK.
Change the color of this data point to purple.
In the Chart editor pane, scroll down, and then expand the Gridlines and ticks section.
Select Vertical axis in the first dropdown, and then select the Minor gridlines checkbox.
Exit out of the Chart editor.
Use a column chart to show one or more categories, or groups, of data, especially if each category has subcategories.
Click Check my progress to verify the objective.
In this task, you create a combo chart and a scatter chart for On the Rise Bakery sales data from its South American locations.
In the lower-left of your spreadsheet, click the sheet labeled Sales - South America.
Select cells A1:M3, and then at the top, click Insert > Chart.
A line chart should appear. Line charts are used to look at data over a time period.
In the Chart editor pane, for Chart type, select Combo chart.
Use a combo chart when you want to represent different data series using lines and bars.
Select cells A1:M3, and then at the top, click Insert > Chart.
A second copy of the chart should appear on top of the existing chart.
Move the charts so they are both visible.
In the Chart Editor pane, for Chart type, select Scatter chart.
Scatter charts show numeric coordinates along the horizontal (X) and vertical (Y) axes. Use a scatter chart when you want to find out how much one variable is affected by another.
Click Check my progress to verify the objective.
The charts you created in tasks one and two are just a few examples of visualizations you can create using Google Sheets. Learn more about Charts & Graphs in Google Sheets.
In this task, you create sparklines and progress bars for On the Rise Bakery to help staff quickly review data.
Sparklines are miniature charts contained within a single cell.
Right-click the gray label for column B and select Insert 1 column left.
A new, empty column is added.
To create a sparkline, in cell B2, type or paste =SPARKLINE(C2:N2)
The only required argument for the sparkline function is data, which can be provided as a range of cells, as shown in this exercise. You can also provide data without specifying a range by using an array. For example, =SPARKLINE({500,100,200,400,300}).
Learn more about using arrays in Google Sheets.
On the Rise Bakery wants to track progress toward the annual sales goal of $2,400,000 after the first quarter of the year (January-March). You can create a progress bar by using the sparkline function with optional settings.
In cell B3, type or paste =SPARKLINE(SUM(C3:E3)/2400000,{"charttype", "bar"; "max", 1; "min", 0; "color1", "blue"})
The first argument uses first quarter sales divided by the annual sales goal. The width of the colored bar represents how much of the annual goal has been achieved.
The sparkline function has an optional parameter that lets you specify many attributes, including: chart types, minimum and maximum values, and colors using an array.
Change the formula in cell B3 to use green instead of blue for the progress bar.
Each option in the array is described using comma-delimited pairs. The first word is the name of the option, for example, "charttype". The second attribute is the value that option is set to, for example, "bar". Different options defined in the array are delimited by semicolons.
Click Check my progress to verify the objective.
Similar to the data argument, the options can also be specified as a range. For more information on available options, see SPARKLINE.
In this task, you publish a spreadsheet as a unique web page with its own URL and link a chart to Google Slides.
The publishing option lets you to share a copy of your file as a distinct, lightweight web page. You can control whether or not your web page is automatically republished when changes are made. You can also limit access to a particular domain.
When you insert a chart or table to Google Slides or Google Docs, you can link them to existing files.
Click Check my progress to verify the objective.
In this lab, you visualized data using pie charts and column charts. You also customized the charts using a chart editor, created inline visualizations, and published the charts in Sheets.
Check out the following for more information on Google Sheets:
...helps you make the most of Google Cloud technologies. Our classes include technical skills and best practices to help you get up to speed quickly and continue your learning journey. We offer fundamental to advanced level training, with on-demand, live, and virtual options to suit your busy schedule. Certifications help you validate and prove your skill and expertise in Google Cloud technologies.
Manual Last Updated February 20, 2024
Lab Last Tested March 10, 2023
Copyright 2025 Google LLC. All rights reserved. Google and the Google logo are trademarks of Google LLC. All other company and product names may be trademarks of the respective companies with which they are associated.
This content is not currently available
We will notify you via email when it becomes available
Great!
We will contact you via email if it becomes available
One lab at a time
Confirm to end all existing labs and start this one