Quarterly Sales Data
Quarter |
Region A |
Region B |
Region C |
Q1 |
$10,500 |
$8,200 |
$12,600 |
Q2 |
$12,400 |
$9,800 |
$14,200 |
Q3 |
$13,800 |
$10,500 |
$15,800 |
Q4 |
$16,200 |
$12,300 |
$18,400 |
<table>
<caption>Quarterly Sales Data</caption>
<thead>
<tr>
<th scope="col">Quarter</th>
<th scope="col">Region A</th>
<th scope="col">Region B</th>
<th scope="col">Region C</th>
</tr>
</thead>
<tbody>
<tr>
<th scope="row">Q1</th>
<td>$10,500</td>
<td>$8,200</td>
<td>$12,600</td>
</tr>
<tr>
<th scope="row">Q2</th>
<td>$12,400</td>
<td>$9,800</td>
<td>$14,200</td>
</tr>
<tr>
<th scope="row">Q3</th>
<td>$13,800</td>
<td>$10,500</td>
<td>$15,800</td>
</tr>
<tr>
<th scope="row">Q4</th>
<td>$16,200</td>
<td>$12,300</td>
<td>$18,400</td>
</tr>
</tbody>
</table>