rose_chris
New Member
- Joined
- Sep 19, 2014
- Messages
- 3
I’m having a list of more than 100,000 data. First column has item number, second column has the notes that are associated with it. One item number might have many notes.
Currently the data is like this
item note
123 abc
123 cdf
456 adad
789 cfc
789 dfa
789 ada
901 dak
234 kad
I’d like to merge the notes to associate with one item number, so that I can display it in one row. The issue is, I have so many records and the number of notes rows varies, so I can’t use concatenate or merge rows manually.
I’d like the end result like this:
123 abc, cdf
456 adad
789 cfc, dfa, ada
901 dak
234 kad
Is there a way I can do this without using vba? I tried tabular design for Pivot but it still shows as separate rows for each unique item number.
Currently the data is like this
item note
123 abc
123 cdf
456 adad
789 cfc
789 dfa
789 ada
901 dak
234 kad
I’d like to merge the notes to associate with one item number, so that I can display it in one row. The issue is, I have so many records and the number of notes rows varies, so I can’t use concatenate or merge rows manually.
I’d like the end result like this:
123 abc, cdf
456 adad
789 cfc, dfa, ada
901 dak
234 kad
Is there a way I can do this without using vba? I tried tabular design for Pivot but it still shows as separate rows for each unique item number.