I am trying to find a way to combine two rows of data into one. the data is as follows
Fields: Company Phone
XYZ 801.222.3333
XYZ 712.444.5555
I want to achieve the following result:
Fields: Company Phone1 Phone2
XYZ 801.222.3333 712.444.5555
Fields: Company Phone
XYZ 801.222.3333
XYZ 712.444.5555
I want to achieve the following result:
Fields: Company Phone1 Phone2
XYZ 801.222.3333 712.444.5555
Comment