As amazing as the IF formula is alone, it really comes into its own when used in groups. In our last post, we talked about how to apply discounts to customer quotes based on a set of criteria being met. This week we’ll introduce you to nested IF functions. Nested IF formulas help you calculate more complex discounts, such as multiple rates for multiple tiers of purchasing.
Problem:
IF(the number of units is over 1000, check to see IF(the number is over 5000, give the customer a 6% discount, otherwise give the customer a 3% discount), if the number of units is not over 1000 the customer receives no discount).
=IF(D2>1000, IF(D2>5000, 0.06, 0.03), 0)
The IF formula gives you a powerful tool for adding true/false logic to your data that will help speed decision-making (such as discounts!) and save you time on otherwise repetitive tasks.