Nested loop IF and COUNTIFS

Izzy13

New Member
Joined
Mar 30, 2019
Messages
5
Hi there!

This is my second time playing with excel, so please bear with me.

I have a string of data in column A (lets say the data name is John,James,Jerry,Jay and Jim) and with each data holding values. My intend is that the formula will compare the names with a cell (lets say G10 which houses the name John) and then only count the values of John that it is within range. The range itself is from another cell (I6 and H6 in this case)

Code:
=IF($A:$A=$G$10,COUNTIFS($E:$E,">="&$I$6,$E:$E,"<"&$H$6))

Just to rephase, the formula should pick out all Johns (since G10 is currently John) and count the values of Johns that is within the range. Instead of a number, the current return is FALSE.

Can somebody please help?

Thanks in advance.
 

Excel Facts

Wildcard in VLOOKUP
Use =VLOOKUP("Apple*" to find apple, Apple, or applesauce
How about
=COUNTIFS($E:$E,">="&$I$6,$E:$E,"<"&$H$6,$A:$A,$G$10)
 
Upvote 0
You don't need the = sign, if you don't specify a criteria ( like >, <= etc) then Xl assumes you mean =.
 
Upvote 0

Forum statistics

Threads
1,215,548
Messages
6,125,472
Members
449,231
Latest member
Sham Yousaf

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