Combining Vlookup & COUNTIF

Help!

New Member
Joined
Sep 26, 2011
Messages
2
I need help with a formula to summarise some data. I have columns of data as such...

Kettering Complete
Northants N/A
Kettering Complete

What i need the formula to do is, look down column A for all the Ketterings and return the NUMBER that says "complete" in column B.

Any Help is much appreciated.
 

Excel Facts

Pivot Table Drill Down
Double-click any number in a pivot table to create a new report showing all detail rows that make up that number
I need help with a formula to summarise some data. I have columns of data as such...

Kettering Complete
Northants N/A
Kettering Complete

What i need the formula to do is, look down column A for all the Ketterings and return the NUMBER that says "complete" in column B.

Any Help is much appreciated.
Try one of these...

Use cells to hold the criteria:
  • D2 = Kettering
  • E2 = Complete
This formula will work in ALL versions of Excel:

=SUMPRODUCT(--(A2:A10=D2),--(B2:B10=E2))

This formula will work in Excel 2007 and later:

=COUNTIFS(A2:A10,D2,B2:B10,E2)
 
Upvote 0

Forum statistics

Threads
1,224,548
Messages
6,179,451
Members
452,915
Latest member
hannnahheileen

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top