Countif/Vlookup

  • Thread starter Thread starter juancarlos
  • Start date Start date
J

juancarlos

Regional Sales Florida = RSF

I need to count the number of times “RSF†appear in 3 ranges. I’m using the
below formula to do it.

=COUNTIF($I$51:$I$253,B41)+COUNTIF('TSection'!$I:$I,B41)+COUNTIF('BSection'!$I:$I,B41)

The problem is that the data appeared on the cells as Regional sales Florida.

How can I combine countif and Vlookup to get a result?
 
So, do you have Regional Sales Florida in cell c41?

If so, then:

=COUNTIF($I$51:$I$253,VLOOKUP(B41,B:C,2,0))+COUNTIF('TSection'!$I:$I,VLOOKUP(B41,B:C,2,0))+COUNTIF('BSection'!$I:$I,VLOOKUP(B41,B:C,2,0))

would look for regional Sales florida in the mentioned ranges.

Otherwise, may need to adjust.
 

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

Excel Need Countifs Formula Help 0
#Ref! error using INDIRECT for file name 2
Countif formula 2
countif and Vlookup 2
Countif Problem 3
vlookup with numbers 10
Countif Based on Date Range 3
Excel Countif cell has diagonal border 6

Back
Top