0
0
Tableaubi_tool~20 mins

Tableau Cloud basics - Practice Problems & Coding Challenges

Choose your learning style9 modes available
Challenge - 5 Problems
🎖️
Tableau Cloud Mastery
Get all challenges correct to earn this badge!
Test your skills under time pressure!
🧠 Conceptual
intermediate
2:00remaining
Understanding Tableau Cloud User Roles

Which Tableau Cloud user role allows a user to publish content and manage projects but does NOT allow site administration?

AExplorer
BViewer
CSite Administrator
DCreator
Attempts:
2 left
💡 Hint

Think about the role that can interact with content but has limited administrative rights.

🎯 Scenario
intermediate
2:00remaining
Scheduling Data Refreshes in Tableau Cloud

You want to ensure your published data source refreshes every day at 2 AM automatically. Which Tableau Cloud feature should you use?

ASubscription Email Settings
BManual Refresh Button
CProject Permissions
DData Extract Refresh Schedule
Attempts:
2 left
💡 Hint

Look for the feature that automates data updates on a set schedule.

visualization
advanced
2:00remaining
Best Practice for Dashboard Sharing in Tableau Cloud

You created a dashboard that should be shared with a team but only certain members should edit it. What is the best way to set this up in Tableau Cloud?

AMake the dashboard public so everyone can edit it freely.
BSend the dashboard file via email to team members who need to edit it.
CPublish the dashboard to a project and set project permissions to allow editing only for specific users.
DCreate multiple copies of the dashboard and share each copy with different users.
Attempts:
2 left
💡 Hint

Think about controlling access centrally and securely within Tableau Cloud.

🔧 Formula Fix
advanced
2:00remaining
Troubleshooting Failed Data Refresh in Tableau Cloud

A scheduled data refresh in Tableau Cloud failed with an authentication error. Which of the following is the MOST likely cause?

AThe user viewing the dashboard does not have permission.
BThe credentials stored for the data source have expired or changed.
CThe Tableau Cloud site is down for maintenance.
DThe dashboard was published with incorrect filters.
Attempts:
2 left
💡 Hint

Think about what authentication errors usually mean for scheduled refreshes.

dax_lod_result
expert
3:00remaining
Calculating Unique Users per Project in Tableau Cloud

Given a dataset with columns ProjectName and UserID, you want to calculate the number of unique users per project using Tableau's LOD expressions. Which LOD expression will correctly calculate this?

Tableau
{ FIXED [ProjectName] : COUNTD([UserID]) }
A{ FIXED [ProjectName] : COUNTD([UserID]) }
B{ EXCLUDE [UserID] : COUNTD([ProjectName]) }
C{ INCLUDE [ProjectName] : COUNT([UserID]) }
DCOUNTD([UserID]) / COUNTD([ProjectName])
Attempts:
2 left
💡 Hint

Remember that FIXED calculates values at the specified dimension level regardless of filters.