The total price including tax is the original price plus the tax amount. The tax amount is the price multiplied by the tax rate, so the formula is =A2 * (1 + B2).
AVERAGEIF(range, condition) calculates the average of cells that meet the condition. Here, it averages only scores greater than zero.
The discount is 10% off (multiply by 0.9) only if quantity is more than 10. Otherwise, price stays the same (multiply by 1). So the formula is =A2 * IF(B2 > 10, 0.9, 1).
SUMIFS(sum_range, criteria_range1, criteria1) sums values in sum_range where criteria_range1 meets criteria1. Here, sum sales in A:A where region in B:B is "East".
The commission brackets include sales up to 1000 (≤1000), between 1001 and 5000 (≤5000), and above 5000. The formula must use ≤ for correct boundaries: =IF(A2 <= 1000, A2 * 0.05, IF(A2 <= 5000, A2 * 0.1, A2 * 0.15)).