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 14% of income for taxes if the income is below $10,000, and 20% of income if the income is $10,000 or more. The income amount is in cell
A1
. Write a spreadsheet expression that would calculate the amount to withhold.
=IF(A1<10000, 0.14*A1, 0.20*A1)