comparing two colums ? countif

M

manfred3

Hi,

I have a spreadsheet with "weeks in column A and "Daily Charges" in
column R. [see below]

col A col R

Week 1
Week 1
20
Week 1
week 2
week 2

How do I say calculate how many charges [col R] occur in "week 1"
i.e. no of times there is a value in "col R" for week 1.

What would I use if the no. of rows is 250 or if it varies month on
month.

Thanks
 
T

T. Valko

Maybe something like this...

=SUMPRODUCT(--(A2:A250="Week 1"),--(R2:R250<>""))

If you're using Excel 2007...

Assumes the cells in column R are either *EMPTY* or contain a visible entry.

=COUNTIFS(A2:A250,"Week 1",R2:R250,"<>")
 

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

Top