Finding a number(s)

louis welna

New Member
Joined
Oct 7, 2002
Messages
12
Thank you so much for the possible solutions. I needed to be more specific.

I'm working with two sets of three numbers which reflect the standard error of the measurement of two obtained scores. The rule is: if the scores touch in any way, then there is no significant difference between the two score and should not be interpreted!
TEST 1
In this example there is a lot of touching going on!<pre> C D E
Low Mid High
7 97 103 108
8 93 98 102</pre>

So, I'm looking for a formula that checks to see if any one number located in c8:e8 (that would include 93, 94,95,96,97,98,99,199,101,102) is found anywhere in c7:e7 (that would include these numbers (97,98,99,100,101,102,103,104,105,106,107,108). I know the answer is "Yes" for there are 6 matches.

TEST 2<pre> C D E
Low Mid High
10 97 103 108
11 91 94 97</pre>

There is only touching at the ends.The answer would also be "yes".

TEST 3<pre> C D E
Low Mid High
13 93 98 103
14 76 94 97</pre>

No touching at all! The answer would be "no".

I'm sorry I am so wordy. Thank you all for your help.

Louie Welna
This message was edited by Juan Pablo G. on 2002-10-16 14:13
 

Excel Facts

Does the VLOOKUP table have to be sorted?
No! when you are using an exact match, the VLOOKUP table can be in any order. Best-selling items at the top is actually the best.
Is this perhaps what you're looking for:

=SUMPRODUCT((ISNUMBER(MATCH(ROW(INDIRECT(C8&":"&E8)),ROW(INDIRECT(C7&":"&E7)),0))+0))

This creates a set of whole numbers from Low to High before matching.
 
Upvote 0
Or...

{=OR(ROW(INDIRECT(C8&":"&E8))=TRANSPOSE(ROW(INDIRECT(C7&":"&E7))))}

Note: This is an array formula which must be entered using the Control+Shift+Enter key combination. The outermost braces, { }, are not entered by you -- they're supplied by Excel in recognition of a properly entered array formula. For more on array formulas see the Excel Help topic for "About array formulas and how to enter them".
 
Upvote 0

Forum statistics

Threads
1,214,944
Messages
6,122,387
Members
449,080
Latest member
Armadillos

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