I'm probably missing funamental understanding
I've tried various options but by chance can't get any of them to work. Well that and the complexity of the queries I need running...
I'll try and explain the whole thing and if some one can give me some pointers on how I can achive this that would be great...
There are 3 queries that I need:
Query 1, This is to give a value of Yes or No, which will be used in the second query.
This is the criteria that needs to be matched in order to get a Yes
Customer = True
Purchases = False
Contacted = False
NumPurchases1 <= 0
NumPurchases2 <= 0
NumPurchases3 <= 3
MainScore >= 800
("Yes" would be added to the same table in field "ValuedCustomer")
So, if the above gets a Yes the following will be added and queried. The below needs to be matched
ValuedCustomer = Yes
MainScore is between 800 And 849 = VC5
MainScore is between 850 And 909 = VC4
MainScore is between 910 And 939 = VC3
MainScore is between 940 And 1048 = VC2
MainScore is > 1049 = VC1
Here the VC score would be added to the table under VCScore and then used in the next query.
(This is the worst of them...)
The VCScore and another field 'Expenditure' from the table will be used:
If VCScore = VC5 Or VC4 And Expenditure Between 15 and 32, Then this is the value 7000
If VCScore = VC5 Or VC4 And Expenditure = 40, Then this is the value 8500
If VCScore = VC5 Or VC4 And Expenditure = 50, Then this is the value 10500
If VCScore = VC5 Or VC4 And Expenditure = 60, Then this is the value 8500
If VCScore = VC5 Or VC4 And Expenditure = 65, Then this is the value 13500
If VCScore = VC3 And Expenditure Between = 15 And 25, Then this is the value 9000
If VCScore = VC3 And Expenditure = 32, Then this is the value 9500
If VCScore = VC3 And Expenditure = 40, Then this is the value 11500
If VCScore = VC3 And Expenditure = 50, Then this is the value 14500
If VCScore = VC3 And Expenditure Between 60 And 65, Then this is the value 16000
If VCScore = VC2 Or VC1 And Expenditure Between 15 And 17, Then this is the value 8500
If VCScore = VC2 Or VC1 And Expenditure Between 25 And 32, Then this is the value 13500
If VCScore = VC5 Or VC4 And Expenditure = 40, Then this is the value 16500
If VCScore = VC5 Or VC4 And Expenditure Between 60 And 65, Then this is the value 20000
If none of the above is matched the value should be "Declined"
Can someone explain the best way to get this query sorted (apart from paying a pro) ;-)
If you can point me to any info on the web that will help me get started on VB that might help

I'll try and explain the whole thing and if some one can give me some pointers on how I can achive this that would be great...
There are 3 queries that I need:
Query 1, This is to give a value of Yes or No, which will be used in the second query.
This is the criteria that needs to be matched in order to get a Yes
Customer = True
Purchases = False
Contacted = False
NumPurchases1 <= 0
NumPurchases2 <= 0
NumPurchases3 <= 3
MainScore >= 800
("Yes" would be added to the same table in field "ValuedCustomer")
So, if the above gets a Yes the following will be added and queried. The below needs to be matched
ValuedCustomer = Yes
MainScore is between 800 And 849 = VC5
MainScore is between 850 And 909 = VC4
MainScore is between 910 And 939 = VC3
MainScore is between 940 And 1048 = VC2
MainScore is > 1049 = VC1
Here the VC score would be added to the table under VCScore and then used in the next query.
(This is the worst of them...)
The VCScore and another field 'Expenditure' from the table will be used:
If VCScore = VC5 Or VC4 And Expenditure Between 15 and 32, Then this is the value 7000
If VCScore = VC5 Or VC4 And Expenditure = 40, Then this is the value 8500
If VCScore = VC5 Or VC4 And Expenditure = 50, Then this is the value 10500
If VCScore = VC5 Or VC4 And Expenditure = 60, Then this is the value 8500
If VCScore = VC5 Or VC4 And Expenditure = 65, Then this is the value 13500
If VCScore = VC3 And Expenditure Between = 15 And 25, Then this is the value 9000
If VCScore = VC3 And Expenditure = 32, Then this is the value 9500
If VCScore = VC3 And Expenditure = 40, Then this is the value 11500
If VCScore = VC3 And Expenditure = 50, Then this is the value 14500
If VCScore = VC3 And Expenditure Between 60 And 65, Then this is the value 16000
If VCScore = VC2 Or VC1 And Expenditure Between 15 And 17, Then this is the value 8500
If VCScore = VC2 Or VC1 And Expenditure Between 25 And 32, Then this is the value 13500
If VCScore = VC5 Or VC4 And Expenditure = 40, Then this is the value 16500
If VCScore = VC5 Or VC4 And Expenditure Between 60 And 65, Then this is the value 20000
If none of the above is matched the value should be "Declined"
Can someone explain the best way to get this query sorted (apart from paying a pro) ;-)
If you can point me to any info on the web that will help me get started on VB that might help