Ask Question
13 September, 04:21

Insert an IF function in cell F5 to calculate the total due. If the customer has chosen home delivery, there is an additional delivery charge located in cell B25. Be sure to use appropriate relative and absolute cell references

+1
Answers (2)
  1. 13 September, 04:39
    0
    =IF ((D5="Yes"), (C4*1.05), C4)

    Explanation:

    If condition accepts 3 parameters, where the 1st parameter is the condition and second parameter is the one which needs to be executed "if the condition is true" and the third argument is executed when the "condition is false".

    Here the condition is if there is an delivery ie. D5 = yes, then we add some amount of additional charges through the formula (c4*1.05) and if not we retain the base price C4.

    Here the additional delivery charges are considered as 5%. You can change the number according to your need.
  2. 13 September, 05:41
    0
    IF condition accepts 3 parameters, where the 1st parameter is the condition and second parameter is the one which needs to be executed "if the condition is true" and the third argument is executed when the "condition is false".

    Here the condition is if there is an delivery ie. D5 = yes, then we add some amount of additional charges through the formula (c4*1.05) and if not we retain the base price C4.

    Here the additional delivery charges are considered as 5%. You can change the number according to your need.
Know the Answer?
Not Sure About the Answer?
Get an answer to your question ✅ “Insert an IF function in cell F5 to calculate the total due. If the customer has chosen home delivery, there is an additional delivery ...” in 📙 Computers & Technology if there is no answer or all answers are wrong, use a search bar and try to find the answer among similar questions.
Search for Other Answers