InterviewSolution
Saved Bookmarks
| 1. |
Suggest the appropriate functions for the following situations:1. For returning the minimum value out of a range A1 to C5.2. For determining whether the customer is eligible for discount or not from the bill amount stored in cell D5. A customer is eligible for discount if bill amount >5,000. |
|
Answer» 1. = MIN(A1 : C5) 2. = IF(D5>5,000, “Discount”, “NoDiscount”) |
|