Formulas Flashcards

(20 cards)

1
Q

count cells between dates

A

=COUNTIFS(range,”>=”&date1,range,”<=”&date2)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

Count cells between two numbers

A

=COUNTIFS(range,”>=X”,range,”<=Y”)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

Count cells equal to

A

=COUNTIF(range,value)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

Count cells equal to case sensitive

A

=SUMPRODUCT((–EXACT(value,range)))

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

Count cells equal to either x or y

A

=COUNTIF(rng,value1) + COUNTIF(rng,value2)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

Count cells equal to one of many things

A

=SUMPRODUCT(COUNTIF(rng,things))

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

Count cells greater than

A

=COUNTIF(rng,”>X”)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

Count cells less than

A

=COUNTIF(rng,”

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

Count cells not equal to

A

=COUNTIF(rng,”<>X”)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

Count cells not equal to many things

A

=COUNTA(range)-SUMPRODUCT(COUNTIF(range,things))

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

Count cells not equal to x or y

A

=COUNTIFS(rng,”<>x”,rng,”<>y”)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

Count cells over 100 characters

A

=SUMPRODUCT(N(LEN(range)>100))

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

Count cells that are blank

A

=COUNTBLANK(rng)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

Count cells that begin with

A

=COUNTIF(rng,”txt*”)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

Count cells that contain either x or y

A

=SUMPRODUCT(–((ISNUMBER(FIND(“abc”,rng)) + ISNUMBER(FIND(“def”,rng)))>0))

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

Count cells that contain errors

A

=SUMPRODUCT(–ISERR(range))

17
Q

Count cells that contain five characters

A

=COUNTIF(rng,”?????”)

18
Q

Count cells that contain negative numbers

A

=COUNTIF(rng,”<0”)

19
Q

Count cells that contain numbers

20
Q

Count cells that contain odd numbers

A

=SUMPRODUCT(–(MOD(rng,2)=1))