0
0
Tableaubi_tool~10 mins

Why choosing the right chart type matters in Tableau - Formula Trace Breakdown

Choose your learning style9 modes available
Sample Data

Monthly sales data for a small business over four months.

CellValue
A1Month
B1Sales
A2Jan
B21000
A3Feb
B31500
A4Mar
B41200
A5Apr
B51700
Formula Trace
SUM([Sales])
Step 1: SUM([Sales])
Cell Reference Map
     A       B
  +-------+-------+
1 | Month | Sales |
  +-------+-------+
2 | Jan   | 1000  |
  +-------+-------+
3 | Feb   | 1500  |
  +-------+-------+
4 | Mar   | 1200  |
  +-------+-------+
5 | Apr   | 1700  |
  +-------+-------+

[Sales] column cells B2 to B5 are referenced in the SUM formula.
The formula SUM([Sales]) uses the sales values from cells B2 to B5.
Result
     A       B       C
  +-------+-------+---------+
1 | Month | Sales | Total   |
  +-------+-------+---------+
2 | Jan   | 1000  |         |
  +-------+-------+---------+
3 | Feb   | 1500  |         |
  +-------+-------+---------+
4 | Mar   | 1200  |         |
  +-------+-------+---------+
5 | Apr   | 1700  | 5400    |
  +-------+-------+---------+

Cell C5 shows the total sales calculated by the formula.
The total sales of 5400 is displayed in cell C5, summing all monthly sales.
Sheet Trace Quiz - 3 Questions
Test your understanding
Why is it important to choose the right chart type for this sales data?
ABecause any chart will show the same information equally well.
BBecause the right chart shows trends clearly over time.
CBecause charts are only for decoration.
DBecause charts hide the data details.
Key Result
SUM aggregates all values in a column to produce a total.