• Hi All

    Please note that at the Chandoo.org Forums there is Zero Tolerance to Spam

    Post Spam and you Will Be Deleted as a User

    Hui...

  • When starting a new post, to receive a quicker and more targeted answer, Please include a sample file in the initial post.

help to solve problem

Davidk

New Member
I need to order data please help.


in column "A" i have user id. in column "B" i have several products which have this "id"

i need to have one "ID" in colimn "A" and all the product in one cell in column "B"


see attached file
 

Attachments

  • sample 1.xlsx
    9.3 KB · Views: 4
Do a search for Concatif on the main Chandon.org page
Then read comments
 
upload_2018-2-6_23-1-58.png

Or try this formula way with helper,

1] In "Helper" C2, formula copied down :

=IF(A2=A3,B2&","&C3,B2)

p.s. You can hide Col C as per your need.

2] In "ID" E2, formula copied down :

=IFERROR(AGGREGATE(15,6,A$2:A$12/(A$2:A$12>E1),1),"")

3] In "Product" F2, formula copied down :

=IF(E2="","",VLOOKUP(E2,A$2:C$12,3,0))

Regards
Bosco
 

Attachments

  • ConcatenateData(2).xlsx
    11.2 KB · Views: 1
Last edited:
Back
Top