excel notes
excel notes
=A1 + B1 → Addition
=A1 - B1 → Subtraction
=A1 * B1 → Multiplication
=A1 / B1 → Division
=A1 ^ B1 → Exponentiation
2. Statistical Functions
3. Logical Functions
=IF(AND(A1>50, B1<100), "OK", "Not OK") → Returns "OK" if both conditions are true
=IF(OR(A1>50, B1<100), "OK", "Not OK") → Returns "OK" if either condition is true
4. Text Functions
7. Financial Functions
8. Rounding Functions
=ROUNDUP(A1, 2) → Rounds up
9. Miscellaneous