S ssuresh98 Member Feb 23, 2018 #1 Hello All, I have an Excel table problem. It seems easy to solve but I cannot find a solution. SOURCE TABLE: A Rose A Pen A Pencil B Apple C Cake C Orange C Mango C Lime REQUIRED FORMAT: A Rose Pen Pencil B Apple C Cake Orange Mango Lime GURUS please help. Thanks
Hello All, I have an Excel table problem. It seems easy to solve but I cannot find a solution. SOURCE TABLE: A Rose A Pen A Pencil B Apple C Cake C Orange C Mango C Lime REQUIRED FORMAT: A Rose Pen Pencil B Apple C Cake Orange Mango Lime GURUS please help. Thanks
Belleke Well-Known Member Feb 23, 2018 #2 Does this what you want? See attached. Attachments transpose mango.xlsm 19.1 KB · Views: 8
S ssuresh98 Member Feb 23, 2018 #3 Belleke said: Does this what you want? See attached. Click to expand... Amazing. Thank you so much. This works perfectly. Last edited: Feb 23, 2018
Belleke said: Does this what you want? See attached. Click to expand... Amazing. Thank you so much. This works perfectly.
B bosco_yip Excel Ninja Feb 23, 2018 #5 Here is a formula solution. 1] D2, copied down : =IFERROR(INDEX(A$2:A$9,MATCH(0,INDEX(COUNTIF(D$1:D1,A$2:A$9),0),0)),"") 2] E2, copied across right until blank and all copied down : =IF($D2="","",IFERROR(INDEX($B$1:$B$9,AGGREGATE(15,6,ROW($A$1:$B$9)/($A$1:$A$9=$D2),COLUMNS($A:A))),"")) Regards Bosco Attachments AggExample(1a).xlsx 11 KB · Views: 5
Here is a formula solution. 1] D2, copied down : =IFERROR(INDEX(A$2:A$9,MATCH(0,INDEX(COUNTIF(D$1:D1,A$2:A$9),0),0)),"") 2] E2, copied across right until blank and all copied down : =IF($D2="","",IFERROR(INDEX($B$1:$B$9,AGGREGATE(15,6,ROW($A$1:$B$9)/($A$1:$A$9=$D2),COLUMNS($A:A))),"")) Regards Bosco