T
Tom Currier
Table 1 = Example of Source table (contains around 5k records)
KeyField FieldtoCombine
524 EM
1547 MS
1621 MS
1621 TV
1691 MS
1691 OM
1696 MS
Table 2 = Example of the result I need to produce from the source
KeyField CombinedFields
524 EM
1547 EM
1621 MSTV
1691 MSOM
1696 MS
Table 1 may have up to 3 records with the same keyfield
I know how to do this using a cursor in SQL (T-SQL)
But not how to do in Access and I can't use SQL Server to solve this issue
This is in Access 2000
Thanks in advance for any assistance as this may trigger my brain to work
KeyField FieldtoCombine
524 EM
1547 MS
1621 MS
1621 TV
1691 MS
1691 OM
1696 MS
Table 2 = Example of the result I need to produce from the source
KeyField CombinedFields
524 EM
1547 EM
1621 MSTV
1691 MSOM
1696 MS
Table 1 may have up to 3 records with the same keyfield
I know how to do this using a cursor in SQL (T-SQL)
But not how to do in Access and I can't use SQL Server to solve this issue
This is in Access 2000
Thanks in advance for any assistance as this may trigger my brain to work