Value based on column numbers

hsandeep

Well-known Member
Joined
Dec 6, 2008
Messages
1,226
Office Version
  1. 2010
Platform
  1. Windows
  2. Mobile
Column A2:A9999 contains values. B1=500 & C1=1000.
If any value in the column A2:A9999 is either of the 2 range B1 & C1 i.e <B1 or >C1,
answer D1=1 else 0.
Column A2:A9999 may also contain #N/A or alphanumeric generated thr' formula which has to be ignored.
i.e. GDR8709 or HHH or #N/A has to be ignored.
 

Excel Facts

How to find 2nd largest value in a column?
MAX finds the largest value. =LARGE(A:A,2) will find the second largest. =SMALL(A:A,3) will find the third smallest
Hi Hsandeep,

I hope I understand your query correctly;

If any value in Col A is equal to B1 or C1 then D1 = 1 else 0?

If so, type this into D1

=IF(OR(IFERROR(MATCH(B1,A2:A9999,0),0)>0,IFERROR(MATCH(C1,A2:A9999,0),0)>0),1,0)

Hope this helps,
Adam.
 
Upvote 0
Little difference:
Instead of If any value in Col A is equal to B1 or C1 then D1 = 1 else 0
it is;
If any value in Col A is Less than B1 or greater than C1 then D1 = 1 else 0?
 
Upvote 0
Column A2:A9999 contains values. B1=500 & C1=1000.
If any value in the column A2:A9999 is either of the 2 range B1 & C1 i.e <b1 or="">C1,
answer D1=1 else 0.
Column A2:A9999 may also contain #N/A or alphanumeric generated thr' formula which has to be ignored.
i.e. GDR8709 or HHH or #N/A has to be ignored.

Given:

A2: 700
A3: 1000
A4: #N/A
A5: KAD
A6: 10
A7: 500

What is the outcome you want to see?

</b1>
 
Upvote 0
Little bit more:
A1444=31000
B1=31001
C1='blank' since yet to be punched at this moment & the answer HAS ALREADY popped up as 1
I want to punch C1=30999 & then the answer should be 1 since A1444 has value which meets BOTH criteria <B1 & >C1
 
Upvote 0
Given:

A2: 700
A3: 1000
A4: #N/A
A5: KAD
A6: 10
A7: 500

What is the outcome you want to see?

Little bit more:
A1444=31000
B1=31001
C1='blank' since yet to be punched at this moment & the answer HAS ALREADY popped up as 1
I want to punch C1=30999 & then the answer should be 1 since A1444 has value which meets BOTH criteria <b1 &="">C1

Please try to answer the question you are posed...

</b1>
 
Upvote 0
Outcome=0 since no value in the range is less than 500 AND greater than 1000. Had A8:1005, then outcome=1
 
Upvote 0
This works. But i found little more....
I want to find whether the range contains either of 600, 601, 602 or not; and I would be punching in B1=603 & C1=599.
 
Upvote 0

Forum statistics

Threads
1,220,965
Messages
6,157,120
Members
451,399
Latest member
alchavar

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