J
James
Hello...
Ok I have
1 table... Which has the following in:
Are you male or Female With a value list as an answer....
Then Q01 with a value list of true or false....
Then Q02 As above...
All the way through to Q25....
Now how do I create this query?? I have a text box which
is where I will have the total... Basically do I need to
create a query??? If so please could you assist me with
the createtion of that. I would like it to take the values
of the 3 combo boxes... and then look through the records
with that matching criteria and then give me the total
records it has found in the text box.
Does this help any?
Thanks
James
..
Ok I have
1 table... Which has the following in:
Are you male or Female With a value list as an answer....
Then Q01 with a value list of true or false....
Then Q02 As above...
All the way through to Q25....
Now how do I create this query?? I have a text box which
is where I will have the total... Basically do I need to
create a query??? If so please could you assist me with
the createtion of that. I would like it to take the values
of the 3 combo boxes... and then look through the records
with that matching criteria and then give me the total
records it has found in the text box.
Does this help any?
Thanks
James
-----Original Message-----
What's the structure of your table? Combo boxes can be used as
criteria in a Query, and you can create a Totals query using those
criteria; for instance you could create an unbound Form named frmCrit
with combos cboGender, cboQ and cboYesNo (or just use a checkbox). You
can then create a Query using
=Forms!frmCrit!cboGender
=Forms!frmCrit!cboQ
=Forms!frmCrit!chkYesNo <or> cboYesNo
on the Criteria line; change it to a Totals query using the Greek
Sigma icon to calculate your sums and percentages (I can't say just
how you'ld do this because I don't know what you're summing).
.
..