Jeff,
(it all began with the limitations of Continous Forms...)
I understand your rationale about Access not being a spreadsheet, but I
have
a fundemental need to do it this way. The reason is because I want to have
control over each 'seperate' field within the form, so that I can make
them
'visible' & 'Invisible' (and other stuff) depending on other actions. The
underlying reason for this is because access will not allow me sufficent
control over any single field record when using continous forms.
This all began when I had the requirement to allow a user to see a form of
seemingly blank records (max 30) and hit a button to make them visible;
the
form is being used to help young people memorize certain lists of items in
a
fixed order. I tried experimenting with conditional formatting which
worked
to a point, in that if you selected a 'blank' field, upon focus it would
reveal its contents; the only flaw with this method was as soon as the
field
lost focus, it would dissapear; I need it to stay revealed, gradually
reveling a full list.
So, I figured the only way around this problem is to somehow get access to
go through a table of master (groups of ) records and copy them into the
(max) 30 fields in a new table; then hey presto!, I can have control over
them. I want to beable to do all this in Access without user intervention,
so
exporting to Excel, manual transposing, etc are not an option.
I hope someone can help me solve this problem.
Jeff Boyce said:
Don't.
Access is not a spreadsheet.
What you described involves embedding data in field/columnnames. You'd
pretty much have to do this if you were using a spreadsheet, but Access
is a
relational database.
You've described "how" you want to solve some problem. If you'll
describe
the underlying problem/business need, folks here may be able to offer
more
specific suggestions.
If you MUST do what you've described, try exporting to Excel and using
the
Transpose function.
Regards
Jeff Boyce
Microsoft Office/Access MVP
How can I update a sequence of field's contents from one table to a
sequence
of seperate fields in another table.
For example
Master Table
[Job No] 211
[Field X] Apples
Oranges
Lemons
Table 2
[Job No] 211
Field 1: Apples
Field 2: Oranges
Field 3: Lemons
Each Job has a different number of records, but with a known maximum of
30,
therefore I want to be able to take the field contents from 30 records
and
place each one in order into 30 seperate fields in the new table.
How can I do this with code?