0
0
Google Sheetsspreadsheet~20 mins

Geo charts and maps in Google Sheets - Practice Problems & Coding Challenges

Choose your learning style9 modes available
Challenge - 5 Problems
🎖️
Geo Chart Master
Get all challenges correct to earn this badge!
Test your skills under time pressure!
📊 Formula Result
intermediate
2:00remaining
Calculate Percentage for Geo Chart Data
You have a table with countries in column A and their sales numbers in column B. You want to add a column C that shows the percentage of total sales for each country to use in a Geo Chart. Which formula in cell C2 correctly calculates this percentage and can be dragged down?
Google Sheets
Country | Sales | Percentage
USA     | 100   | 
Canada  | 50    | 
Mexico  | 25    | 
A=B2/SUM(B$2:B$4)
B=B2/SUM(B2:B4)
C=B2/SUM($B$2:$B$4)
D=B2/SUM(B$2:B4)
Attempts:
2 left
💡 Hint
Use absolute references to fix the total sales range when copying the formula down.
Function Choice
intermediate
1:30remaining
Choose the Correct Function to Format Country Names
You want to create a Geo Chart in Google Sheets, but your country names are in lowercase (e.g., "usa", "canada"). Which function should you use to convert the country names to proper case (first letter uppercase) in a new column?
A=PROPER(A2)
B=UPPER(A2)
C=CAPITALIZE(A2)
D=LOWER(A2)
Attempts:
2 left
💡 Hint
You want the first letter of each word capitalized, not all uppercase or lowercase.
🎯 Scenario
advanced
2:00remaining
Troubleshooting Geo Chart Display Issues
You created a Geo Chart in Google Sheets using country names and sales data. However, some countries are not highlighted on the map even though they have sales data. What is the most likely cause?
AThe sheet is protected and prevents chart updates.
BSales data contains zeros instead of positive numbers.
CThe chart type selected is not Geo Chart.
DCountry names are misspelled or not recognized by Google Sheets Geo Chart.
Attempts:
2 left
💡 Hint
Check if the country names match official country names exactly.
data_analysis
advanced
2:30remaining
Analyzing Regional Sales with Geo Chart
You have sales data by US states in columns A (State) and B (Sales). You want to create a Geo Chart showing sales by state. Which data preparation step is necessary before creating the Geo Chart?
AEnsure state names are full official names (e.g., "California") or use two-letter state codes (e.g., "CA").
BConvert sales numbers to percentages of total sales.
CSort the data alphabetically by sales amount.
DRemove any states with zero sales from the data.
Attempts:
2 left
💡 Hint
Geo Charts require location names or codes that Google Sheets recognizes.
🧠 Conceptual
expert
3:00remaining
Understanding Geo Chart Color Scaling
In a Geo Chart showing sales by country, you notice that countries with very high sales overshadow countries with moderate sales, making the map hard to interpret. What is the best way to adjust the color scale to improve visibility of moderate sales?
AIncrease the maximum value in the color scale to the highest sales number.
BUse a logarithmic scale for the color gradient to reduce the impact of very high values.
CRemove countries with the highest sales from the data set.
DChange the chart type to a bar chart instead of a Geo Chart.
Attempts:
2 left
💡 Hint
Think about how to make large differences in data less extreme visually.