-
MAX
-
MIN
-
AVERAGE ( x AVG)
-
COUNT
-
COUNTIF
-
LARGE
-
SMALL
-
MEDIAN
-
MODE
-
SUM
-
SUMIF
-
IF
-
ROUND
-
RAND
-
RANDBETWEEN
-
INT
-
MOD
-
POWER
-
Will not explain these (takes too much time) again. Check pass notes.
- LEN
- Stands for "Length", used to calculate length in a string (text).
- Usage:
LEN(Cell range)
- LEFT
- Used to cut characters from the left hand side of a provided range.
- Usage:
LEFT(Cell range, length of string to cut)- Example: To cut the word "Bad" out of "Bad apple" in cell A1, the command would be:
LEFT(A1, 6)
- Example: To cut the word "Bad" out of "Bad apple" in cell A1, the command would be:
- RIGHT
- Used to cut characters from the right hand side of a provided range.
- Usage:
RIGHT(Cell range, length of string to cut)- Example: To cut the word "apple" out of "Bad apple" in cell A1, the command would be:
RIGHT(A1, 4)
- Example: To cut the word "apple" out of "Bad apple" in cell A1, the command would be:
- MID(take character from a position)
- Used to cut strings from a bunch of strings
- Usage:
MID(Cell range, starting length, length of string to cut)- Example: To cut the word "apple" out of "Bad apple" in cell A1, the command would be:
MID(A1, 5, 5) - Starting length: The first 5 (starting length) is targeted on
a, from left to right, including spaces. - Length of string to cut: Straightforward. In this example, I want to cut apple, so the string length is 5.
- Example: To cut the word "apple" out of "Bad apple" in cell A1, the command would be:
- vlookup (data vertical)
- hlookup (data horizontal)
- vlookup(input , table , column , FALSE/TRUE(true -> similar ok -> usually set false) )
- Ex : vlookup(G1 , A1:D20 , 4 , FALSE)
- check first column -> put input in first column (Ex : name )
- filter
- Pivot tables are GUI functions.
- Just do drag and drop :)
- What-if analysis can allow you to store multiple sets of data in a cell.
- Useful when you want to see different results with different values.
- Some examples are scenario merge and goal seek.
made by tkt0506