I have an access table in the following format:
Project_ID January February March .......
1 $1000 $2000 $1500
2 $0 $150 $345
3 $500 $600 $250
.
.
.
I want to have the data in the following format:
Project_ID Month Revenue
1 January $1000
1 February $2000
1 March $1500
2 January $0
2 February $150
2 March $345
3 January $500
3 Febuary $600
3 March $250
.
.
.
Is there a way to do this? I can replace the Month Names with Number such as 01 for january, 02 for February, 03 for March.....if the names are an issue.
Thanks,
Bilal
Project_ID January February March .......
1 $1000 $2000 $1500
2 $0 $150 $345
3 $500 $600 $250
.
.
.
I want to have the data in the following format:
Project_ID Month Revenue
1 January $1000
1 February $2000
1 March $1500
2 January $0
2 February $150
2 March $345
3 January $500
3 Febuary $600
3 March $250
.
.
.
Is there a way to do this? I can replace the Month Names with Number such as 01 for january, 02 for February, 03 for March.....if the names are an issue.
Thanks,
Bilal
Comment