Try another version of this question Get help: Box 1: Enter your answer as letters. Examples: A B C, linear, a cat
An accountant needs to withhold 22% of income for taxes if the income is below $50,000, and 32% of income if the income is $50,000 or more. The income amount is in cell
A1
. Write a spreadsheet expression that would calculate the amount to withhold.
=IF(A1<50000, 0.22*A1, 0.32*A1)