D
Dkline
I have a table to which I need to do a double lookup.
Table structure is:
[ID] [MinAge] [MinFace] [MedicalReq1] [MedicalReq2]
....[MedicalReqN]
1 0 0 True False
False
2 0 10000000 True False
False
3 0 20000000 True False
False
4 0 50000000 True True
False
5 16 0 True False
False
6 16 10000000 True False
False
7 16 20000000 True False
False
8 16 50000000 True True
False
and so on through some 40 records
Criteria is the age of the insurance AND the face amount of the policy.
What I need to do is select which record in the table meets both the
[MinAge] and [MinFace]. The Query is to return
Can I nest Dlookups? Should I just jump into VBA and do a nested Case?
What is the best solution for something like a double lookup?
Table structure is:
[ID] [MinAge] [MinFace] [MedicalReq1] [MedicalReq2]
....[MedicalReqN]
1 0 0 True False
False
2 0 10000000 True False
False
3 0 20000000 True False
False
4 0 50000000 True True
False
5 16 0 True False
False
6 16 10000000 True False
False
7 16 20000000 True False
False
8 16 50000000 True True
False
and so on through some 40 records
Criteria is the age of the insurance AND the face amount of the policy.
What I need to do is select which record in the table meets both the
[MinAge] and [MinFace]. The Query is to return
Can I nest Dlookups? Should I just jump into VBA and do a nested Case?
What is the best solution for something like a double lookup?