I have a query called queryCauseCodes04 with this result:
CUSRE EXGM FTDD FTFM FTFSP
0 3 1 4 2
I need to convert (Update?) it to a table called CauseCodes:
CauseCode Count
CUSRE 0
EXGM 3
FTDD 1
FTFM 4
FTFSP 2
There are 18 columns but for time/space sake I only used 5. The Cause Codes always stay the same but the Count will change frequently.
Can I do this with a Union Query or do I need to use ADODB? I've been digging all day and am still lost.
CUSRE EXGM FTDD FTFM FTFSP
0 3 1 4 2
I need to convert (Update?) it to a table called CauseCodes:
CauseCode Count
CUSRE 0
EXGM 3
FTDD 1
FTFM 4
FTFSP 2
There are 18 columns but for time/space sake I only used 5. The Cause Codes always stay the same but the Count will change frequently.
Can I do this with a Union Query or do I need to use ADODB? I've been digging all day and am still lost.