ShaneBrennan
Programmer
I have a ickle bickle table with the following fields:
CourseID
UnitID
StudentID
EVCode
Mark
I want to create a new table from this information with:
CourseID
UnitID
StudentID
**Then a new field for each EVcode
Example
CourseID UnitID StudentID EVCode Mark
xxxxxxxxx xxxxxx xxxxxxx e01 999
xxxxxxxxx xxxxxx xxxxxxx e02 999
xxxxxxxxx xxxxxx xxxxxxx e03 999
xxxxxxxxx xxxxxx xxxxxxx e04 999
xxxxxxxxx xxxxxx xxxxxxx a01 999
xxxxxxxxx xxxxxx xxxxxxx a02 999
to produce a table with the following fields:
CourseID
UnitID
StudentID
E01
E02
E03
E04
A01
A02
I need this table, so I can put the results of a cross tab into the correct sequence.
Another possibility is to find a way of sequencing the EVCode generated fields into the correct sequence. As If I create a CROSS TAB query from the original table I get:
CourseID
UnitID
StudentID
A01
A02
E01
E02
E03
E04
Where the fields are generated in ascending order. It's important, from the users prospecive that the E01, E02, A01, A02 are in the correct sequence.
I would appreciate any help with this
Many thanks
Shane
Shane Brennan
Shane.Brennan@tcat.ac.uk
CourseID
UnitID
StudentID
EVCode
Mark
I want to create a new table from this information with:
CourseID
UnitID
StudentID
**Then a new field for each EVcode
Example
CourseID UnitID StudentID EVCode Mark
xxxxxxxxx xxxxxx xxxxxxx e01 999
xxxxxxxxx xxxxxx xxxxxxx e02 999
xxxxxxxxx xxxxxx xxxxxxx e03 999
xxxxxxxxx xxxxxx xxxxxxx e04 999
xxxxxxxxx xxxxxx xxxxxxx a01 999
xxxxxxxxx xxxxxx xxxxxxx a02 999
to produce a table with the following fields:
CourseID
UnitID
StudentID
E01
E02
E03
E04
A01
A02
I need this table, so I can put the results of a cross tab into the correct sequence.
Another possibility is to find a way of sequencing the EVCode generated fields into the correct sequence. As If I create a CROSS TAB query from the original table I get:
CourseID
UnitID
StudentID
A01
A02
E01
E02
E03
E04
Where the fields are generated in ascending order. It's important, from the users prospecive that the E01, E02, A01, A02 are in the correct sequence.
I would appreciate any help with this
Many thanks
Shane
Shane Brennan
Shane.Brennan@tcat.ac.uk