0
0
Tableaubi_tool~10 mins

Creating bins 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 create a bin of size 10 for the Sales field.

Tableau
INT([Sales] / [1]) * 10
Drag options to blanks, or click blank then click option'
A15
B10
C20
D5
Attempts:
3 left
💡 Hint
Common Mistakes
Using the wrong bin size number.
Forgetting to multiply back after division.
2fill in blank
medium

Complete the code to create bins of size 50 for the Profit field.

Tableau
INT([Profit] / [1]) * 50
Drag options to blanks, or click blank then click option'
A50
B10
C100
D25
Attempts:
3 left
💡 Hint
Common Mistakes
Using a number smaller or larger than the bin size.
Not using INT to round down.
3fill in blank
hard

Fix the error in the bin calculation for Quantity with bin size 5.

Tableau
INT([Quantity] [1] 5) * 5
Drag options to blanks, or click blank then click option'
A/
B+
C-
D*
Attempts:
3 left
💡 Hint
Common Mistakes
Using multiplication instead of division.
Using addition or subtraction which does not group values.
4fill in blank
hard

Fill both blanks to create bins of size 20 for Discount.

Tableau
INT([Discount] [1] [2]) * 20
Drag options to blanks, or click blank then click option'
A/
B*
C20
D10
Attempts:
3 left
💡 Hint
Common Mistakes
Multiplying before dividing.
Using wrong bin size number.
5fill in blank
hard

Fill all three blanks to create bins of size 100 for Sales with rounding.

Tableau
ROUND(INT([Sales] [1] [2]) * [3], 0)
Drag options to blanks, or click blank then click option'
A/
B100
D*
Attempts:
3 left
💡 Hint
Common Mistakes
Using multiplication instead of division first.
Not multiplying back by bin size.
Not rounding the result.