antonyx
Arsenal Supporter
- Local time
- Today, 15:24
- Joined
- Jan 7, 2005
- Messages
- 556
ok i would like to create a very specific search form. the form has many fields but they all belong to one simple table.. Enquiries.
i know this table isnt normalised but this section is separate from the database and i need this certain filter feature on the enquiry form i have made.
a screen of the form can be found here.
http://bb.1asphost.com/antonyx6/enqform.jpg
the top 3 combos contain all the records for that particular field.. the first bit of info i need is how to alter the statement for the combo lists to ignore values with no entries..this is because not every stored enquiry will contain an enquirer's forname.. is this correct for my Forname combo....?
i will take things one step at a time.. so if i can clear this up first i will describe what i want to happen next if thats ok..
thank you.
i know this table isnt normalised but this section is separate from the database and i need this certain filter feature on the enquiry form i have made.
a screen of the form can be found here.
http://bb.1asphost.com/antonyx6/enqform.jpg
the top 3 combos contain all the records for that particular field.. the first bit of info i need is how to alter the statement for the combo lists to ignore values with no entries..this is because not every stored enquiry will contain an enquirer's forname.. is this correct for my Forname combo....?
Code:
SELECT zEnquiries.Enquiry_ID, zEnquiries.Enq_Forname FROM zEnquiries WHERE zEnquiries.Enq_Forname is NOT NULL;
i will take things one step at a time.. so if i can clear this up first i will describe what i want to happen next if thats ok..
thank you.