0
0
Tableaubi_tool~20 mins

Google Sheets connection in Tableau - Practice Problems & Coding Challenges

Choose your learning style9 modes available
Challenge - 5 Problems
🎖️
Google Sheets Connection Master
Get all challenges correct to earn this badge!
Test your skills under time pressure!
🧠 Conceptual
intermediate
2:00remaining
Understanding Google Sheets Connection in Tableau

Which of the following is required to connect Tableau to a Google Sheets document?

AA downloaded CSV file of the Google Sheet
BOnly the Google Sheets URL without login
CThe Google Sheets URL and a valid Google account login
DAn API key from Google Cloud Platform
Attempts:
2 left
💡 Hint

Think about what Tableau needs to access private Google Sheets data.

dax_lod_result
intermediate
2:00remaining
Filtering Data from Google Sheets in Tableau

You connected Tableau to a Google Sheet containing sales data. You want to create a calculated field that sums sales only for the year 2023. Which Tableau calculation will give the correct sum?

Tableau
SUM(IF YEAR([Date]) = 2023 THEN [Sales] ELSE 0 END)
ASUM(IF [Date].Year = 2023 THEN [Sales] ELSE 0 END)
BSUM(IF [Date] = 2023 THEN [Sales] ELSE 0 END)
CSUM(IF YEAR([Date]) = '2023' THEN [Sales] ELSE 0 END)
DSUM(IF YEAR([Date]) = 2023 THEN [Sales] ELSE 0 END)
Attempts:
2 left
💡 Hint

Remember how to extract the year from a date in Tableau calculations.

visualization
advanced
2:00remaining
Best Visualization for Google Sheets Sales Data

You imported monthly sales data from Google Sheets into Tableau. You want to show trends over time and compare sales by product category. Which visualization type is best?

ALine chart with months on the x-axis and sales on the y-axis, color-coded by product category
BPie chart showing total sales by product category
CBar chart with product categories on the x-axis and total sales on the y-axis
DScatter plot with sales on x-axis and months on y-axis
Attempts:
2 left
💡 Hint

Think about how to show changes over time and compare categories simultaneously.

🔧 Formula Fix
advanced
2:00remaining
Troubleshooting Google Sheets Refresh in Tableau

You connected Tableau to a Google Sheet, but after updating the sheet, Tableau does not show the new data. What is the most likely cause?

ATableau data source is not set to refresh automatically or manually refreshed
BGoogle Sheets URL has changed and needs to be updated in Tableau
CGoogle Sheets file is corrupted and cannot be read
DTableau does not support Google Sheets as a data source
Attempts:
2 left
💡 Hint

Think about how Tableau handles live data connections and refreshes.

🎯 Scenario
expert
3:00remaining
Optimizing Performance for Large Google Sheets in Tableau

You have a very large Google Sheets file connected to Tableau. The dashboard loads slowly. Which approach will best improve performance?

AIncrease the size of the Google Sheets file by adding more columns to reduce row count
BExtract the Google Sheets data into a Tableau Data Extract (TDE) and use the extract instead of live connection
CUse a live connection and refresh the data every 5 seconds
DRemove all filters from the Tableau dashboard to speed up loading
Attempts:
2 left
💡 Hint

Think about how Tableau handles large data and the difference between live and extract connections.