Challenge - 5 Problems
Chart Customization Master
Get all challenges correct to earn this badge!
Test your skills under time pressure!
📊 Formula Result
intermediate2:00remaining
What is the effect of this chart title formula?
You have a chart in Google Sheets with the title set by the formula
=CONCATENATE("Sales Report - ", TEXT(TODAY(), "MMMM YYYY")). What will the chart title show if today is June 15, 2024?Google Sheets
=CONCATENATE("Sales Report - ", TEXT(TODAY(), "MMMM YYYY"))
Attempts:
2 left
💡 Hint
The TEXT function formats dates. "MMMM YYYY" means full month name and year.
✗ Incorrect
The formula combines the text "Sales Report - " with the current date formatted as full month name and year, so it shows "Sales Report - June 2024" on June 15, 2024.
❓ Function Choice
intermediate2:00remaining
Which function changes the chart legend position in Google Sheets?
You want to move the legend of a chart to the bottom in Google Sheets using the chart editor. Which option correctly describes how to do this?
Attempts:
2 left
💡 Hint
Legend position is set in the chart editor under customization options.
✗ Incorrect
Google Sheets does not support formulas to change chart legend position. The correct way is to use the chart editor's Customize tab and select the legend position.
🎯 Scenario
advanced3:00remaining
You want to set custom colors for each data series in a Google Sheets chart. How do you do it?
You have a line chart with three data series. You want the first series to be red, the second green, and the third blue. What steps do you take in Google Sheets to apply these colors?
Attempts:
2 left
💡 Hint
Series colors are set in the chart editor under the Series section.
✗ Incorrect
Google Sheets allows setting colors per series in the chart editor under Customize > Series. You select each series and pick the color. Cell colors do not affect chart colors.
📊 Formula Result
advanced2:00remaining
What happens if you set a chart title to a cell with a formula that returns an empty string?
You link a chart title to cell A1, and cell A1 contains the formula
=IF(B1>100, "High Sales", ""). If B1 is 50, what will the chart title show?Google Sheets
=IF(B1>100, "High Sales", "")
Attempts:
2 left
💡 Hint
An empty string means no visible text.
✗ Incorrect
When the formula returns an empty string, the chart title linked to that cell shows no text, so the title area appears blank.
❓ data_analysis
expert3:00remaining
Analyzing legend visibility with multiple series
You create a stacked bar chart with 4 data series. You want to hide the legend for the third series only, but keep legends for the others visible. Which statement is true about Google Sheets chart customization?
Attempts:
2 left
💡 Hint
Legend visibility is controlled globally in Google Sheets charts.
✗ Incorrect
Google Sheets does not support hiding legend entries for individual series. The legend is either shown or hidden for the entire chart.