Ask Question

in cell c5, enter a formula that uses a nested IF function to calculate the bonus. If sales in b5 are less $15,000, the sales person earns a 5% bonus. If the sales are greater than or equal to $15,000 but less than $25,000, the sales person earns a 10% bonus. If sales are more than or equal to $25,000, the sales person earns a 15% bonus.

+4
Answers (1)
  1. 15 June, 19:20
    0
    In C5, the equation should be:

    =IF (b5>=25000, b5*0.15, IF (b5>=15000, b5*0.1, b5*0.05))

    You want to find the larger values first and work your way down to the lower values.
Know the Answer?
Not Sure About the Answer?
Find an answer to your question 👍 “in cell c5, enter a formula that uses a nested IF function to calculate the bonus. If sales in b5 are less $15,000, the sales person earns ...” in 📗 Computers & Technology if the answers seem to be not correct or there’s no answer. Try a smart search to find answers to similar questions.
Search for Other Answers