Count if 2 criteria are met

C

clare_s

Hi- need to get a formula which will count the number of times 2 seperate
criteria are met- firstly that in column G the entry is Alicia, and secondly
that in column I there is an entry- have tried to piece this together myself
but as only an occassional user i'm struggling!! Thanks C
 
D

Don Guillett

Also takes into account if someone touched the space bar in i2:i22

=SUMPRODUCT((G2:G22="alicia")*(LEN(TRIM(I2:I22))>0))
 
Top