Name F1 F2 F3 F4 F5 F6
a Life04 Mat14
b Des01 Life02 Mat14 Vis01 Mat18 Phy12
Which I wish to convert to something like this:
Name Field
a Life04
a Mat14
b Des01
b Life02
b Mat14
b Vis01
b Mat18
b Phy12
I have done this quite easily through a series of make table and append queries, but every time the data gets updated, I have to run all of them again. Is there an easier (and more dynamic) way to get the info I seek?
By the way, is there any reason that you can’t keep the data in the ‘after’ format, possibly with an ‘fnumber’ field to indicate which column each value should fall in, and whenever you want to show it cross-tabbed, you can run a crosstab query?
Is that a limitation of the way that the data is updated?
Your table as it is does not seem to be well ‘normalized’, in that the fields are repeaters. That is part of why you’re having trouble with this process.