0
0
Tableaubi_tool~10 mins

Publishing to Tableau Public - Interactive Code Practice

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

Complete the code to publish your workbook to Tableau Public.

Tableau
tableauWorkbook.[1]('MyWorkbook.twbx')
Drag options to blanks, or click blank then click option'
Aexport
Bpublish
Csave
Dupload
Attempts:
3 left
💡 Hint
Common Mistakes
Using 'publish' directly without saving first.
2fill in blank
medium

Complete the code to start publishing your workbook to Tableau Public.

Tableau
tableauWorkbook.[1]('TableauPublic')
Drag options to blanks, or click blank then click option'
Ashare
Bpublish
Cupload
Dsend
Attempts:
3 left
💡 Hint
Common Mistakes
Using 'upload' which is not the exact method name.
3fill in blank
hard

Fix the error in the code to publish with a description.

Tableau
tableauWorkbook.publish(project='Public', [1]='Sales Dashboard')
Drag options to blanks, or click blank then click option'
Adescription
Bdesc
Cdetails
Dinfo
Attempts:
3 left
💡 Hint
Common Mistakes
Using 'desc' which is not recognized by the API.
4fill in blank
hard

Fill both blanks to set the workbook visibility and enable automatic updates.

Tableau
tableauWorkbook.publish(visibility=[1], auto_update=[2])
Drag options to blanks, or click blank then click option'
A'public'
BTrue
CFalse
D'private'
Attempts:
3 left
💡 Hint
Common Mistakes
Setting visibility to 'private' when publishing publicly.
5fill in blank
hard

Fill all three blanks to publish with project, description, and show tabs enabled.

Tableau
tableauWorkbook.publish(project=[1], description=[2], show_tabs=[3])
Drag options to blanks, or click blank then click option'
A'Public'
B'Monthly Sales Report'
CTrue
DFalse
Attempts:
3 left
💡 Hint
Common Mistakes
Using False for show_tabs which hides navigation tabs.