Hi all, I have this table in MS ACCESS 2003, The table looks like this: [total of 11 rows and 38 columns. I will only show partial data for the sample given]
DIST AVG_SPENT MED_AGE 1ST_TIME WEEKLY MONTHLY ...
0 $10.25 25 12 10 25
1 $50.25 23 20 30 35
2 $52.25 30 22 45 80
.... [TOTAL OF 11 DISTRICTS/ROWS]
I WANT TO CHANGE THE TABLE SO IT LOOKS LIKE THIS
DIST 0 DIST 1 DIST 2 DIST 3 DIST 4
AVG_SPENT $10.25 $50.25 $52.25
MED_AGE 25 23 30
1ST_TIME 12 20 22
WEEKLY 10 30 45
MONTHLY 25 35 80
How do I acomplish this programmatically. Right now I am doing it manually and it takes alot of time. I have tryed an array but with no much luck.
Thanks in advance.
DIST AVG_SPENT MED_AGE 1ST_TIME WEEKLY MONTHLY ...
0 $10.25 25 12 10 25
1 $50.25 23 20 30 35
2 $52.25 30 22 45 80
.... [TOTAL OF 11 DISTRICTS/ROWS]
I WANT TO CHANGE THE TABLE SO IT LOOKS LIKE THIS
DIST 0 DIST 1 DIST 2 DIST 3 DIST 4
AVG_SPENT $10.25 $50.25 $52.25
MED_AGE 25 23 30
1ST_TIME 12 20 22
WEEKLY 10 30 45
MONTHLY 25 35 80
How do I acomplish this programmatically. Right now I am doing it manually and it takes alot of time. I have tryed an array but with no much luck.
Thanks in advance.