BASIC TO ADVANCE FORMULAS IN EXCEL
BASIC TO ADVANCE FORMULAS IN EXCEL
Basic Formulas
● Mathematical Operations:
○ SUM(range): Adds the values in a range.
○ AVERAGE(range): Calculates the average of values in a range.
○ COUNT(range): Counts the number of cells in a range.
○ MAX(range): Finds the maximum value in a range.
○ MIN(range): Finds the minimum value in a range.
● Text Functions:
○ CONCATENATE(text1, text2, ...): Combines text strings.
○ LEN(text): Returns the length of a text string.
○ UPPER(text): Converts text to uppercase.
○ LOWER(text): Converts text to lowercase.
● Logical Functions:
○ IF(condition, value_if_true, value_if_false): Performs a logical test and returns a value
based on the result.
○ AND(logical1, logical2, ...): Returns TRUE if all arguments are TRUE.
○ OR(logical1, logical2, ...): Returns TRUE if at least one argument is TRUE.
Intermediate Formulas