View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.programming
[email protected] kkirank.kmp@gmail.com is offline
external usenet poster
 
Posts: 11
Default Value between 2 values

Hi I'm a newbie to writing macro, so could someone please help me with
this. I have 2 sheets in a workbook. Sheet 1 looks like this
Column A Column B Column C
ABCDE 3000 3099
BDSCXD 4500 4599
UIT 4800 5199
SWEDFE 5300 5399
SmartS 5450 5499
XYZ123 5600 5629
QWER23 5650 5669


Sheet2 looks like this

Column A Column B Column C
4523 12345
5621 34543
4545 43534
5326 23453
5629 23432

I need to check the data in Column B (in Sheet 2) above and compare it
with Sheet 1, i.e., see if it lies between Column B & Column C (in
Sheet 1). For example: "4523" is the first value in Sheet 2, I need to
see which row 4523 belongs in Sheet 1, i.e., 4523 lies between 4500 &
4599 (row2 in Sheet1), when it finds the row I need to pick up the
name in Column A and put it in Column A of Sheet2. Another example the
last value is 5629 and it lies between 5600 & 5629. So basically
Column B in Sheet2 is a data that lies between a start and end value
(ColumnB & columnC in sheet1).
The result will look like this in Sheet2

Column A Column B Column C
BDSCXD 4523 12345
XYZ123 5621 34543
BDSCXD 4545 43534
SWEDFE 5326 23453
XYZ123 5629 23432

I don't know if this is of importance, their are more than 15000 rows
in Sheet2.

Thanks in advance for any help!