adding letters in a payroll calendar

G

Guest

I would like to total all of the "v" for vacation, "s" for sick and "p" for
personal days in a excel worksheet. So, if I had a total of 10 "v" in
different cells each representing a different day of the month I would like
to total those. Is this possible?
 
G

Guest

Use the COUNTIF Function.
If your letters are in A1:A25,
=COUNTIF(A1:A25,"v")
would return the total number of times v had been entered in that range.

tj
 
G

Guest

For some reason it only work with a single range. I need to have it
seperated. So, I tried this and it does not
work:=COUNTIF(B7:X11,B15:X19,B23:X27,B31:X35, "V")
do you have any suggestions?

Thanks,
Brandon
 
G

Guest

can you tell me why this formula does not work?
=COUNTIF(B7:X11,B15:X19,B23:X27,B31:X35, "V")
thanks,

Brandon
 
F

Frank Kabel

Hi
just add multiple COUNTIFS. e.g.
=COUNTIF(B7:X11,"V")+COUNTIF(B15:X19,"V")+....
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads

Payroll 1
Sum If 11
formula support needed 2
adding cells with text and numbers 1
Ignore text in timecard calculation 1
how can i make a letter equal 1? 3
Using other equations inside of SUM? 1
Match and Sum 1

Top