-
Notifications
You must be signed in to change notification settings - Fork 0
/
Excel Formulas
74 lines (54 loc) · 1.18 KB
/
Excel Formulas
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
Add all the values in the Range:
=SUM(C2:C5)
Minimum value in a range:
=MIN(E2:E5)
Maximum value in a range:
=MAX(E2:E5)
Average value in a range:
=AVERAGE(C2:C5)
Count the number of values in a range:
=COUNT(E2:E5)
Count the number of unique values:
=COUNTA(UNIQUE(B6:B16))
Work out the power:
=POWER(D2/100,2)
Round up to the nearest multiple:
=CEILING(F2,1)
Round down to the nearest multiple:
=FLOOR(F2,1)
Remove empty spaces:
=TRIM(A4)
Replace character with another character:
=REPLACE(A2,1,1,"B")
=SUBSTITUTE(A4,"Jacoba","Rahim")
=LEFT(A2,9)
=MID(A2,11,6)
=RIGHT(A2,7)
=UPPER(A1:F1)
=LOWER(A1:F1)
=PROPER(A1:F1)
=NOW()
=SECOND(NOW())
=TODAY()
=DAY(TODAY())
=DATEDIF(A2,B2,"d")
=VLOOKUP(A2,worksheet1!B2:H20,6,FALSE)
=HLOOKUP(B1,B1;E5,2,FALSE)
=IF(G2<24.9,"Fit,"Unfit")
=AND(B5>10,B5<20)
Trim after a space:
=TEXTAFTER(A1, " ", -1)
Trim Before a space:
=TEXTBEFORE(A1, " ", -1)
Count number of words:
=COUNTA(TEXTSPLIT(TRIM(A1)," "))
Remove a string from a string:
=SUBSTITUTE(A1,C1,"")
Trim spaces:
=TRIM(A1)
Count the value in brackets in a cell:
=COUNTIF(A1,"")
Count the value in brackets in a range:
=COUNTIF(A1:A10,"")
If the cell equals 1 then display yes:
=IF(A1=1,"y","n")