0
0
Tableaubi_tool~20 mins

Documentation and naming conventions in Tableau - Practice Problems & Coding Challenges

Choose your learning style9 modes available
Challenge - 5 Problems
🎖️
Documentation and Naming Master
Get all challenges correct to earn this badge!
Test your skills under time pressure!
🧠 Conceptual
intermediate
1:30remaining
Why use consistent naming conventions in Tableau?

Which of the following is the best reason to use consistent naming conventions for fields and worksheets in Tableau dashboards?

AIt allows Tableau to generate more colors for charts.
BIt automatically improves the dashboard loading speed.
CIt helps team members quickly understand the purpose of each field and worksheet.
DIt reduces the file size of the Tableau workbook.
Attempts:
2 left
💡 Hint

Think about how clear names help people working together.

lod_result
intermediate
2:00remaining
Calculate total sales per region with clear naming

Given a Tableau data source with fields Sales and Region, which calculated field formula correctly sums sales per region with a clear and descriptive name?

Tableau
SUM([Sales])
AName: Total Sales by Region; Formula: { FIXED [Region] : SUM([Sales]) }
BName: SalesSum; Formula: SUM([Sales])
CName: Sales per Region; Formula: SUM([Region])
DName: TotalSales; Formula: SUM([Sales]) + [Region]
Attempts:
2 left
💡 Hint

Look for a formula that fixes the calculation by region and a descriptive name.

visualization
advanced
1:30remaining
Best practice for dashboard element naming

Which naming practice for dashboard elements (worksheets, filters, parameters) improves accessibility and maintenance?

AUse descriptive names that include the element type and purpose, like 'Filter - Sales Region'.
BUse short codes like 'F1', 'P2' to keep names brief.
CName all elements with the same generic name like 'Chart'.
DUse random names to avoid revealing data details.
Attempts:
2 left
💡 Hint

Think about how clear names help users and developers find elements easily.

🔧 Formula Fix
advanced
1:30remaining
Identify the naming issue in this Tableau calculated field

A Tableau calculated field is named totalSales but is used inconsistently in the workbook as TotalSales and total_sales. What problem can this cause?

ATableau automatically corrects the names, so no problem occurs.
BThe dashboard will load faster due to multiple names.
CThe workbook file size will increase significantly.
DTableau will treat these as different fields, causing confusion and errors.
Attempts:
2 left
💡 Hint

Consider how Tableau handles case sensitivity and naming consistency.

🎯 Scenario
expert
2:30remaining
Designing a naming convention for a large Tableau project

You are leading a large Tableau project with multiple developers. Which naming convention strategy best supports collaboration, version control, and easy maintenance?

APrefix all calculated fields with developer initials and date, e.g., 'JS_202406_TotalSales'.
BUse descriptive names including element type, purpose, and version, e.g., 'Calc_TotalSales_v2'.
CName fields only by their data source column names without modification.
DUse a flat naming style with no prefixes or suffixes to keep names short.
Attempts:
2 left
💡 Hint

Think about clarity, versioning, and teamwork in naming.