Easiest Way to Return #s within 2

Excel Facts

Return population for a City
If you have a list of cities in A2:A100, use Data, Geography. Then =A2.Population and copy down.
Trying to evaluate 4 groups (columns of data), and formula only return results that are within 2 (+/- 2) of others in a group. Answer should just be 8 - 20, but AND formula returning 1 - 27 instead. Any ideas on how to fix the formula?

I'm not sure I understand your intent. But the following change in F13 (copy down the column) gives the result you require:

=IF(AND(COUNT(B11:B15)>0,COUNT(C11:C15)>0,COUNT(D11:D15)>0,COUNT(E11:E15)>0),A13," ")

Unrelated observation.... Some of the "blank" cells in columns B:E actually contain a string with a single blank, like " " (space in between) in formula above. That makes it difficult to test for a "blank" cell; that is, a cell that appears blank. IMHO, it is better to use the null string "" (pair of double-quotes with no space in between). Then a formula like IF(B13="", "blank", "not blank") does what you expect.
 
Upvote 0
Joe,

You are an analytical genius. It worked indeed. Thank you very much. Hopefully I can return the favor one day, but you're probably way ahead of me...Nonetheless, thanks again.

SEAL
 
Upvote 0

Forum statistics

Threads
1,215,030
Messages
6,122,762
Members
449,095
Latest member
m_smith_solihull

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