0
0
Tableaubi_tool~10 mins

Creating a dashboard in Tableau - Interactive Practice

Choose your learning style9 modes available
Practice - 5 Tasks
Answer the questions below
1fill in blank
easy

Complete the code to add a new dashboard in Tableau.

Tableau
dashboard = workbook.[1]()
Drag options to blanks, or click blank then click option'
Anew_dashboard
Bcreate_dashboard
Cadd_dashboard
DnewDashboard
Attempts:
3 left
💡 Hint
Common Mistakes
Using a method name that does not exist in the Tableau API.
Confusing dashboard creation with worksheet creation.
2fill in blank
medium

Complete the code to set the size of the dashboard to 1200x800 pixels.

Tableau
dashboard.[1] = (1200, 800)
Drag options to blanks, or click blank then click option'
Aset_size
Bsize
Cdimensions
DsetDimensions
Attempts:
3 left
💡 Hint
Common Mistakes
Using a method instead of a property.
Using camelCase instead of lowercase property names.
3fill in blank
hard

Fix the error in the code to add a worksheet to the dashboard.

Tableau
dashboard.[1](worksheet)
Drag options to blanks, or click blank then click option'
Aadd_sheet
Badd_worksheet
CaddSheet
DaddWorksheet
Attempts:
3 left
💡 Hint
Common Mistakes
Using camelCase method names which are not valid in Tableau's Python API.
Using 'addSheet' or 'addWorksheet' which are incorrect.
4fill in blank
hard

Fill both blanks to set the dashboard title and make it visible.

Tableau
dashboard.[1] = 'Sales Overview'
dashboard.[2] = True
Drag options to blanks, or click blank then click option'
Atitle
Bshow_title
Cdashboard_title
Ddisplay_title
Attempts:
3 left
💡 Hint
Common Mistakes
Using incorrect property names like 'dashboard_title' or 'display_title'.
Not setting the visibility property to True.
5fill in blank
hard

Fill all three blanks to add a filter action to the dashboard.

Tableau
filter_action = dashboard.[1](source_sheet=[2], target_sheet=[3])
Drag options to blanks, or click blank then click option'
Aadd_filter_action
Bworksheet1
Cworksheet2
Dcreate_filter
Attempts:
3 left
💡 Hint
Common Mistakes
Using incorrect method names like 'create_filter'.
Mixing up source and target worksheet variables.