0
0
Google Sheetsspreadsheet~20 mins

Sheets with Google Data Studio (Looker) in Google Sheets - Practice Problems & Coding Challenges

Choose your learning style9 modes available
Challenge - 5 Problems
🎖️
Google Data Studio Sheets Master
Get all challenges correct to earn this badge!
Test your skills under time pressure!
🎯 Scenario
intermediate
2:00remaining
Connecting Google Sheets to Google Data Studio

You want to create a live report in Google Data Studio using data from a Google Sheet. Which step is required to connect your sheet as a data source?

AShare the Google Sheet with the Data Studio service account email
BPublish the Google Sheet to the web and then add it as a data source in Data Studio
CUse the Google Sheets connector inside Data Studio and select your sheet
DDownload the Google Sheet as Excel and upload it to Data Studio
Attempts:
2 left
💡 Hint

Think about how Data Studio accesses live data from Sheets without manual uploads.

📊 Formula Result
intermediate
1:30remaining
Formula Output for Date Formatting in Sheets

You have a date in cell A1 as 2024-06-15. You use the formula =TEXT(A1, "MMMM yyyy"). What is the output?

A2024-06
BJune 2024
C15 June 2024
D06 2024
Attempts:
2 left
💡 Hint

The TEXT function formats dates using text patterns like MMMM for full month name.

Function Choice
advanced
2:00remaining
Choosing the Right Function for Dynamic Data Range

You want to create a dynamic range in Google Sheets that automatically expands as you add new rows of data in column A. Which function is best to use inside Data Studio to ensure all data is included?

AFILTER(A:A, LEN(A:A))
BARRAYFORMULA(A1:A100)
COFFSET(A1, 0, 0, COUNTA(A:A), 1)
DINDIRECT("A1:A" & COUNTA(A:A))
Attempts:
2 left
💡 Hint

Consider a formula that includes all non-empty cells in column A without fixed limits.

data_analysis
advanced
2:00remaining
Aggregating Data for Google Data Studio

You have sales data in Google Sheets with columns: Date, Product, and Sales Amount. You want to create a summary table showing total sales per product. Which formula in Sheets will correctly calculate total sales for product "Widget"?

A=SUM(C:C * (B:B = "Widget"))
B=SUMIFS(C:C, B:B, "Widget")
C=COUNTIF(B:B, "Widget")
D=SUMIF(B:B, "Widget", C:C)
Attempts:
2 left
💡 Hint

Think about summing values in one column based on matching criteria in another.

📊 Formula Result
expert
2:00remaining
Understanding Data Studio's Handling of Blank Cells from Sheets

You have a Google Sheet column with values: 10, 15, (blank), 20. You connect this sheet to Data Studio. What will be the sum of this column in Data Studio's aggregation?

ASum of only non-blank cells: 45
BNull or blank, so sum is 0
CError due to blank cell
D45
Attempts:
2 left
💡 Hint

Consider how Data Studio treats blank cells in numeric aggregations.