I have a table that's organized like this:
Id Cycle Day Test_Date Test_A Test_B Test_C
A 1 1 mm/dd/yy # # #
A 1 2 mm/dd/yy # # #
A 1 3 mm/dd/yy # # #
B 1 1 mm/dd/yy # # #
C 1 1 mm/dd/yy # # #
C 1 2 mm/dd/yy # # #
. . . . . . .
. . . . . . .
. . . . . . .
The point of the above being that for any Id there will be an unequal number of visits (as represented by rows having Dates and Test_A Test_B Test_C scores), since the person having Id whatever cannot be counted on to arrive as many times as his peers, however all three test values will be recorded when Id arrives on any given Test_Date at Cycle something and Day (within Cycle) something.
What I'd like is to have the following:
Id Visit_1A Visit_2A Visit_3A Visit_3A Visit_4A .... Visit_400A Visit_1B Visit_2B Visit_3B Visit_3B Visit_4B .... Visit_400B Visit_1C Visit_2C Visit_3C Visit_3C Visit_4C .... Visit_400C
in a table based on the above.
We know that we're never going to know what the upper limit of visits (rows) will be associated w/ any given ID so (being generous) we'll say 400 (it could be any number).
What I'm fixing to do is create a form which has a descriptive label (a column of label controls) running top to bottom on the left side with the column heading titled 'Test Name'; the first row under the column titled 'Test Name' would read 'Test_A', the second would read 'Test_B', the third and final one would read 'Test_C'. To the right of this, will be up to whatever the maximum number of columns we finally decide upon beginning with one called 'Day 1 Results', followed by one called 'Day 2 Results',....up to the last one called 'Day 400 Results'. Under the 'Day 1 Results', will appear top to bottom'Visit_1A', 'Visit_1B', 'Visit_1C' controls; beneath the one called 'Day 2 Results' the form will have 'Visit_2A, 'Visit_2B' and 'Visit_2C controls and so forth and so on.
Is this doable in Access 2000?
Id Cycle Day Test_Date Test_A Test_B Test_C
A 1 1 mm/dd/yy # # #
A 1 2 mm/dd/yy # # #
A 1 3 mm/dd/yy # # #
B 1 1 mm/dd/yy # # #
C 1 1 mm/dd/yy # # #
C 1 2 mm/dd/yy # # #
. . . . . . .
. . . . . . .
. . . . . . .
The point of the above being that for any Id there will be an unequal number of visits (as represented by rows having Dates and Test_A Test_B Test_C scores), since the person having Id whatever cannot be counted on to arrive as many times as his peers, however all three test values will be recorded when Id arrives on any given Test_Date at Cycle something and Day (within Cycle) something.
What I'd like is to have the following:
Id Visit_1A Visit_2A Visit_3A Visit_3A Visit_4A .... Visit_400A Visit_1B Visit_2B Visit_3B Visit_3B Visit_4B .... Visit_400B Visit_1C Visit_2C Visit_3C Visit_3C Visit_4C .... Visit_400C
in a table based on the above.
We know that we're never going to know what the upper limit of visits (rows) will be associated w/ any given ID so (being generous) we'll say 400 (it could be any number).
What I'm fixing to do is create a form which has a descriptive label (a column of label controls) running top to bottom on the left side with the column heading titled 'Test Name'; the first row under the column titled 'Test Name' would read 'Test_A', the second would read 'Test_B', the third and final one would read 'Test_C'. To the right of this, will be up to whatever the maximum number of columns we finally decide upon beginning with one called 'Day 1 Results', followed by one called 'Day 2 Results',....up to the last one called 'Day 400 Results'. Under the 'Day 1 Results', will appear top to bottom'Visit_1A', 'Visit_1B', 'Visit_1C' controls; beneath the one called 'Day 2 Results' the form will have 'Visit_2A, 'Visit_2B' and 'Visit_2C controls and so forth and so on.
Is this doable in Access 2000?