Basic Excel Formulas
Basic Excel Formulas
Formula: SUM
Example: =SUM(A1:A5)
Formula: AVERAGE
Example: =AVERAGE(B1:B5)
Formula: IF
Formula: COUNT
Example: =COUNT(D1:D10)
Formula: COUNTA
Example: =COUNTA(E1:E10)
Formula: VLOOKUP
Explanation: Looks for value 101 in the first column of the range and returns the value in the 2nd
column.
Formula: HLOOKUP
Explanation: Searches for 'Q1' in the top row and returns the value from the 2nd row.
Formula: INDEX
Example: =INDEX(A1:C3, 2, 2)
Explanation: Returns the value at the intersection of the 2nd row and 2nd column in the range
A1:C3.
Formula: MATCH
Formula: NOW
Example: =NOW()
Formula: TODAY
Example: =TODAY()
Formula: LEN
Example: =LEN("Excel")
Formula: TRIM
Explanation: Removes extra spaces from text, leaving only single spaces between words.
Formula: CONCATENATE
Formula: TEXT
Formula: LEFT
Example: =LEFT(A1, 3)
Formula: RIGHT
Example: =RIGHT(A1, 2)
Formula: MID
Example: =MID(A1, 2, 3)
Explanation: Returns 3 characters from the text in A1, starting from the 2nd character.
Formula: AND
Formula: OR