- Need to memorize instructions of functions. No instructions will be given on the functions.
- Memorize all functions before exam.
- Relative cell reference VS absolute (fixed) cell reference (add dollar sign
$to make it fixed). - Autofill (Excel will try to find out the pattern and fill out the remaining cells.)
- Functions:
- Total number of cells with contents
COUNTIFused to find certain set of data in a specified number of cells.- Syntax:
COUNTIF(Cell start : Cell end, "Data range")
- Syntax:
- Large used to find the nth largest number in a bunch of numbers
- Syntax:
LARGE(range, number sequence)
- Syntax:
- Small used to find the nth smallest number in a bunch of numbers
- Syntax:
SMALL(range, number sequence)
- Syntax:
- Median used to find the Median in a bunch of numbers
- Syntax:
MEDIAN(range)
- Syntax:
- Mode used to find the Mode in a bunch of numbers
- Syntax:
MODE(range)
- Syntax:
- Sum used to sum a range of numbers
- Syntax:
SUM(range)
- Syntax:
- Sumif used to sum a range of numbers with conditionals.
- Syntax:
SUMIF(range of numbers, "=Condition", range of condition)
- Syntax:
- If used to sort data.
- Syntax:
IF(condition, "output if condition is fulfilled", "output if condition is not fulfilled) - Can be used to do else if (how stupid lol).
- Syntax:
- Round used to round off numbers.
- Syntax:
ROUND(cell number, decimal places)
- Syntax:
- Roundup used to round up numbers.
- Syntax:
ROUNDUP(cell number, decimal places)
- Syntax:
- Rounddown used to round down numbers.
- Syntax:
ROUNDDOWN(cell number, decimal places)
- Syntax:
- Random used to output random decimal number between 0 and 1.
- Syntax:
RAND()- Advanced: Generate a number between 0 and 40.
- Syntax:
RAND()*40
- Syntax:
- Advanced: Generate a number between 1 to 100. (0 is not accepted)
- Syntax:
RAND()*99+1
- Syntax:
- Advanced: Generate random number between 40 to 60.
- Syntax:
RAND()*20+40
- Syntax:
- Advanced: Generate a number between 0 and 40.
- Syntax:
- Randbetween used to generate random number between given range.
- Syntax:
RANDBETWEEN(smallest number, largest number)- RANDBETWEEN does NOT generate numbers with decimals
- RANDBETWEEN is NOT allowed in DSE (wtf)
- Syntax:
- Mod feature used to get remainder of number
- Syntax:
MOD(number, divider)
- Syntax:
- Power feature used to get power of the certain number
- Syntax:
POWER(number, power)
- Syntax: