+ add
- subtractÂ
* multiply
/ divide
=Sum(A1:A9)
=Sum(A9-A1)
=Sum(A1*A2)
=Sum(A1/A2)
Adds all cells within cells A1 to A9
 Subtract A1 from A9
Multiplies A1 by A2
Divides A1 by A2
=Average(B1:B9)
Calculates the average of cells B1 to B9
=Round(C1,2)
Rounds the data in cell C1 to 2 decimal places
=Min(D1:D9)
Identifies the lowest number within cells D1 to D9
=Max(D1:D9)
Identifies the highest number within cells D1 to D9
=Count(E1:E9)
Counts the number of cells which contain data
=Countblank(E1:E9)
Counts the number of cells which contain no data
=Index(A1:E9,3,2)
Returns the value in the 3rd Row and 2nd column in the range of data A1 to E9
Searches for a value and returns it's position
=Match(A1,B1:B9,0)
Searches for A1 within the data in cells B1 to B9
=countif(A1:A9, ">5")
Counts all cells with A1 to A9 where the value is greater than 5
=counta(A1:A9)
Counts all cells with A1 to A9 which are not empty
Adds data which meets a criteria
=SumIF(B1:B9, ">5")
Adds data in cells B1 to B9 where the values are greater than 5
Averages data which meets a criteria
=AverageIF(B1:B9, ">5")
Averages the data in cells B1 to B9 where the values are greater than 5
Taken from @letslearnX on X (Formally Twitter)