mach27
Technical User
- Oct 25, 2005
- 18
Hello Experts,
I am having a hard time understanding other forums if it has any relation to what I want to happen.
I have a table which is a result of an append query where it appends the value of each month. 1 'Submission' may have multiple entries.
What I want to do now is combine multiple rows into 1 where 'Submission' AND 'MType' appear more than once, just like below:
I have tried the UPDATE function but wondering why it is not capturing everything. I don't know what did I miss in the syntax.
Thanking you all in advance
Mach
I am having a hard time understanding other forums if it has any relation to what I want to happen.
I have a table which is a result of an append query where it appends the value of each month. 1 'Submission' may have multiple entries.
Code:
Table 1
Submission MType Jan Feb Mar Apr ... Dec
CB00002402 OOP Growth 1
CB00002402 OOP Growth 10
CB00002538 OOP Growth 13
CB00002538 AOP Growth 13
CB00002538 AOP Growth 4
What I want to do now is combine multiple rows into 1 where 'Submission' AND 'MType' appear more than once, just like below:
Code:
Table 2
Submission MType Jan Feb Mar Apr ... Dec
CB00002402 OOP Growth 1 10
CB00002538 OOP Growth 13
CB00002538 AOP Growth 13 4
I have tried the UPDATE function but wondering why it is not capturing everything. I don't know what did I miss in the syntax.
Thanking you all in advance
Mach