Problem: Marking sales data as "Excellent" if the sales quantity exceeds 100.
Usage:
=IF(B2>=100, "Excellent", "Average")
Problem: Counting the number of orders placed in a specific region (e.g., "Seoul").
Usage:
=COUNTIF(C1:C100, "Seoul")
Problem: Calculating the total sales for a specific category (e.g., "Electronics").
Usage:
=SUMIF(D1:D100, "Electronics", E1:E100)
Problem: Managing errors gracefully when data is missing or a formula is incorrect.
Usage:
=IFERROR(A1/B1, "Error")
Example:
=IFS(A1>90, "Excellent", A1>50, "Average", TRUE, "Needs Improvement")
Example:
=CHOOSE(2, "Apple", "Banana", "Grape") // Result: Banana
Example:
=AND(A1>0, B1<100) // Returns TRUE or FALSE