2. Logical Formulas
11. IF : Performs a logical test and returns one value if true, another if false.
=IF(A1>10, "Yes", "No")
12. AND : Returns TRUE if all conditions are true.
=AND(A1>10, B1<20)
13. OR : Returns TRUE if any condition is true.
=OR(A1>10, B1<20)
14. NOT : Reverses the logic of a condition.
=NOT(A1>10)
15. IFS : Checks multiple conditions and returns the first true value (Excel 2019+).
=IFS(A1>10, "High", A1>5, "Medium", TRUE, "Low")
16. SWITCH : Evaluates an expression and returns a value based on matching cases (Excel 2019+).
=SWITCH(A1, 1, "One", 2, "Two", "Unknown")
3. Text Formulas
17. CONCATENATE / CONCAT : Combines text from multiple cells.
=CONCATENATE(A1, " ", B1)
18. TEXTJOIN : Combines text with a delimiter (Excel 2019+).
=TEXTJOIN(", ", TRUE, A1:A10)
19. LEFT : Extracts a specified number of characters from the left.
=LEFT(A1, 5)
20. RIGHT : Extracts a specified number of characters from the right.
=RIGHT(A1, 5)
21. MID : Extracts a substring from the middle of a text string.
=MID(A1, 2, 5)
22. LEN : Returns the length of a text string.
=LEN(A1)
23. TRIM : Removes extra spaces from text.
=TRIM(A1)
24. UPPER : Converts text to uppercase.
=UPPER(A1)
25. LOWER : Converts text to lowercase.
=LOWER(A1)
26. PROPER : Converts text to proper case (capitalizes each word).
=PROPER(A1)?
27. FIND : Finds the position of a substring within a text string (case-sensitive).
=FIND("apple", A1)
28. SEARCH : Finds the position of a substring within a text string (not case-sensitive).
=SEARCH("apple", A1)
29. REPLACE : Replaces part of a text string with another string.
=REPLACE(A1, 1, 5, "Hello")
30. SUBSTITUTE : Replaces specific text in a string.
=SUBSTITUTE(A1, "old", "new")