Here is sample data
Test Table 1
ID NUM DESC
1 1 Hi
1 2 Every
1 3 One
2 1 See
2 2 You
3 1 Welcome
4 1 Thank
4 2 You
I want to make this table become
Test Table 2
ID NUM DESC
1 1 Hi Every One
2 1 See You
3 1 Welcome
4 1 Thank You
I would like this automated with VB - It doesn't have to create a NEW table if there is a way to do this without. There are 22,000 records in this table and it will shrink down to 15,000 after this concatenate. I have an button that will trigger this cleanup.
Any Thoughts?
Test Table 1
ID NUM DESC
1 1 Hi
1 2 Every
1 3 One
2 1 See
2 2 You
3 1 Welcome
4 1 Thank
4 2 You
I want to make this table become
Test Table 2
ID NUM DESC
1 1 Hi Every One
2 1 See You
3 1 Welcome
4 1 Thank You
I would like this automated with VB - It doesn't have to create a NEW table if there is a way to do this without. There are 22,000 records in this table and it will shrink down to 15,000 after this concatenate. I have an button that will trigger this cleanup.
Any Thoughts?