Dear Forum people,
This may be easy for an old hand, but I'm stumped.
I have a table with the following structure:
F1 F2
1 2
1 4
1 7
2 4
2 7
3 7
4 7
5 6
5 7
6 7
7
(The table also has and ID field with a unique value for each combination, but for clarity I did not include it here).
I want it to be restructured appear as follows:
F1 F2 F3 F4
1 2 4 7
2 4 7
3 7
4 7
5 6 7
6 7
7
I know I can write VB procedures that will inspect the fields over multiple loops and record each value in fields in the record, but
is their a way to structure a query or series of nested queries to do this?
Thanks.