Inserting a table into a form

J

James

Ok then I would like a table in the form that has values
along the top and down the left hand side..

For Example:

Value 1 Value 2 Value 3 Value 4

SubValue1 tickboxhere tickboxhere tickboxhere
SubValue2 tickboxhere tickboxhere tickboxhere
SubValue3 tickboxhere tickboxhere tickboxhere
SubValue4 tickboxhere tickboxhere tickboxhere

Then when the tickboxes are checked or no checked then
they are saved to the appropriate record.

Does this help any?

I have some fields above and below my table so it will be
inserted as a sub form.

Is this possible?

If so how?

Many Thanks

James
 
J

John Vinson

Is this possible?

With difficulty.
If so how?

You'll need to use an unbound Form as your subform (with no
Recordsource, and using checkboxes/textboxes with no Control Source).
You will then need to write VBA code in an appropriate Form event to
poll through all the checkboxes on the form, writing data to a
Recordset based on the normalized table.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top