I want to find the value A1 in worksheet #1. This value will be found in
worksheet # 2, which has column A,B,C (some 500 records, already preentered values)
WORKSHEET # 2
A B C
1. 2.5 0.5 3
2. 2.5 0.7 4
3. 2.5 1.2 5
4. 3.0 0.8 4
5. 3.0 0.9 5
6. 3.0 1.0 6
7. 3.0 1.3 7
8. 4.0 1.0 6
9. 4.0 2.0 7
10. 4.0 2.5 8
The value A1 is the function of A1= C[Func(A,B)] from worksheet #2. Example:
Criteria is to find the first record C in worksheet #2 which will satisfy A>=2.7, and B<=1.1.
First A>2.7 or A=2.7 is record # 4. (The rest of records satisfy also this conditon) Second condition first B<1.1 or B=1.1 is record is record # 6. (record # 4,5 also satisfies this requirements, but the first is rec # 6)
So, the record # 6 is the first record wich will satsify A>=2.7 and B<=1.1. For this record value C=6.
This value is what has to appear in A1 in worksheet # 1.
How to solve this problem?
worksheet # 2, which has column A,B,C (some 500 records, already preentered values)
WORKSHEET # 2
A B C
1. 2.5 0.5 3
2. 2.5 0.7 4
3. 2.5 1.2 5
4. 3.0 0.8 4
5. 3.0 0.9 5
6. 3.0 1.0 6
7. 3.0 1.3 7
8. 4.0 1.0 6
9. 4.0 2.0 7
10. 4.0 2.5 8
The value A1 is the function of A1= C[Func(A,B)] from worksheet #2. Example:
Criteria is to find the first record C in worksheet #2 which will satisfy A>=2.7, and B<=1.1.
First A>2.7 or A=2.7 is record # 4. (The rest of records satisfy also this conditon) Second condition first B<1.1 or B=1.1 is record is record # 6. (record # 4,5 also satisfies this requirements, but the first is rec # 6)
So, the record # 6 is the first record wich will satsify A>=2.7 and B<=1.1. For this record value C=6.
This value is what has to appear in A1 in worksheet # 1.
How to solve this problem?