0
0
Tableaubi_tool~10 mins

Why calculations extend data analysis in Tableau - Test Your Understanding

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

Complete the code to create a calculated field that sums sales.

Tableau
SUM([1])
Drag options to blanks, or click blank then click option'
ASales
BProfit
CQuantity
DDiscount
Attempts:
3 left
💡 Hint
Common Mistakes
Choosing 'Profit', 'Quantity', or 'Discount' instead of 'Sales'.
2fill in blank
medium

Complete the code to calculate average profit per order.

Tableau
AVG([1])
Drag options to blanks, or click blank then click option'
ASales
BOrder ID
CQuantity
DProfit
Attempts:
3 left
💡 Hint
Common Mistakes
Using 'Order ID' which is not numeric and cannot be averaged.
3fill in blank
hard

Fix the error in the calculation to find profit ratio.

Tableau
SUM([1]) / SUM(Sales)
Drag options to blanks, or click blank then click option'
AQuantity
BDiscount
CProfit
DOrder ID
Attempts:
3 left
💡 Hint
Common Mistakes
Using 'Discount' or 'Quantity' which do not represent profit.
4fill in blank
hard

Fill both blanks to create a calculated field for profit margin percentage.

Tableau
(SUM([1]) / SUM([2])) * 100
Drag options to blanks, or click blank then click option'
AProfit
BSales
CQuantity
DDiscount
Attempts:
3 left
💡 Hint
Common Mistakes
Swapping profit and sales or using non-monetary fields.
5fill in blank
hard

Fill all three blanks to create a calculated field that counts orders with profit greater than zero.

Tableau
COUNT(IF [1] > [2] THEN [3] END)
Drag options to blanks, or click blank then click option'
AProfit
B0
COrder ID
DSales
Attempts:
3 left
💡 Hint
Common Mistakes
Using 'Sales' instead of 'Profit' in the condition.
Counting 'Sales' instead of 'Order ID'.