MS Excel Notes with Formulas
Q1. What is the formula for sum in MS Excel?
The formula is =SUM(range). Example: =SUM(A1:A5)
Q2. What is the formula for average in Excel?
The formula is =AVERAGE(range). Example: =AVERAGE(B1:B10)
Q3. How to find the maximum value?
Use =MAX(range). Example: =MAX(C1:C20)
Q4. How to find the minimum value?
Use =MIN(range). Example: =MIN(D1:D10)
Q5. How to count numeric values?
Use =COUNT(range). Example: =COUNT(E1:E15)
Q6. How to count all filled cells?
Use =COUNTA(range). Example: =COUNTA(F1:F20)
Q7. How to use IF function?
Use =IF(condition, value_if_true, value_if_false). Example: =IF(A1>50, "Pass", "Fail")
Q8. How to find square root?
Use =SQRT(number). Example: =SQRT(144)
Q9. How to round numbers?
Use =ROUND(number, num_digits). Example: =ROUND(3.14159, 2)
Q10. How to concatenate text?
Use =CONCATENATE(text1, text2, ...). Example: =CONCATENATE("Hello", " ", "World") or
=TEXTJOIN(" ", TRUE, A1:A3)