Aug 22, 2024
Starting a Formula:
=
sign=1+1
or =B1+C1
(using cell references)Addition/Subtraction/Multiplication/Division:
=B1 + C1
=B2 - C2
=B3 * C3
(use *
for multiplication)=B4 / C4
(use /
for division)=SUM(B1:B5)
MIN and MAX:
=MIN(range)
=MAX(range)
COUNT and COUNTA:
=COUNT(range)
=COUNTA(range)
AVERAGE and MEDIAN:
=AVERAGE(range)
=MEDIAN(range)
CONCATENATE:
=CONCATENATE(A1, " ", B1)
(add space between values)IF Statement:
=IF(condition, true_value, false_value)
=IF(A1="smile", "yay", "boo")
COUNTIF:
=COUNTIF(range, criteria)
VLOOKUP:
=VLOOKUP(lookup_value, table_array, col_index, [range_lookup])
SUMIF:
=SUMIF(range, criteria, sum_range)
=NOW()
to get the current date and time