Hello,
I am trying to have an table looks like
Part_number Desc
P1 New_part
P1 Old_part
P2 something
P2 more
now I need the output as
P1, "New_part;Old_Part"
P2, "something;more"
basically, I need to cancatenate the Desc column when the Part_number is the same.
I know the table doe not make much sense. but I just use it as an example.
Thanks a lot