Transpose matching data from columns to rows

Godders199

Active Member
Joined
Mar 2, 2017
Messages
313
Office Version
  1. 2013
Hello, I have tried searching for the answer, but dont really no what to search.

Effectively i have sheet 1 and Sheet 2, sheet 1 has all the products , sale and dispatch dates, sheet 2 just lists all the products, for example A-Z

Sheet 1

ProductNameSale DateDispact date
a 20/12/201824/12/2018
a 20/12/201824/12/2018
a 20/12/201824/12/2018
b 20/12/201824/12/2018
<colgroup><col width="135" style="width: 101pt; mso-width-source: userset; mso-width-alt: 4937;"> <col width="64" style="width: 48pt;"> <col width="75" style="width: 56pt; mso-width-source: userset; mso-width-alt: 2742;" span="2"> <tbody> </tbody>

Sheet 2
ProductDispatch dateDispatch dateDispatch dateDispatch date
a24/12/201824/12/201824/12/2018
b
c
d
<colgroup><col width="55" style="width: 41pt; mso-width-source: userset; mso-width-alt: 2011;"> <col width="92" style="width: 69pt; mso-width-source: userset; mso-width-alt: 3364;"> <col width="92" style="width: 69pt; mso-width-source: userset; mso-width-alt: 3364;" span="2"> <col width="92" style="width: 69pt; mso-width-source: userset; mso-width-alt: 3364;"> <tbody> </tbody>

effectively what i want to do is, on sheet2, detail all the dispatch dates or each product in a row.

If some one could tell me how to do it, i will then beable to write te vba

thanks
 

Excel Facts

Difference between two dates
Secret function! Use =DATEDIF(A2,B2,"Y")&" years"&=DATEDIF(A2,B2,"YM")&" months"&=DATEDIF(A2,B2,"MD")&" days"
I use formula array, so you need click Ctrl+Shift+Enter end of line formula.
Formula:

Code:
{=IFERROR(INDEX(Sheet1!$D$2:$D$5,SMALL(IF(Sheet1!$A$2:$A$5=Sheet2!$A2,ROW(Sheet1!$A$2:$A$5)-1,""),COLUMN()-1)),"")}

RFW4dbO.jpg
 
Upvote 0
Hi! I have a similar 2 sheet transpose from columns to rows issue. Can you help with a formula that results in sheet 2?

Sheet1

Item#
ImageURL
10011-BKBK10011-BKBK_01.jpgassets/images/MEM_MAIN/10011-BKBK_01.jpg
10011-BKBK10011-BKBK_02_TABLETOP.jpgassets/images/MEM_ALT/10011-BKBK_02_TABLETOP.jpg
10011-GRGR10011-GRGR_01.jpgassets/images/MEM_MAIN/10011-GRGR_01.jpg
10011-GRGR10011-GRGR_02_FACE.jpgassets/images/MEM_ALT/10011-GRGR_02_FACE.jpg
10011-GRGR10011-GRGR_03_GIRL.jpgassets/images/MEM_ALT/10011-GRGR_03_GIRL.jpg
10011-RDBL10011-RDBL_01.jpgassets/images/MEM_MAIN/10011-RDBL_01.jpg

<colgroup><col><col><col></colgroup><tbody>
</tbody>


Sheet 2

Item#imageimageimageimageimage
10011-BKBKassets/images/MEM_MAIN/10011-BKBK_01.jpgassets/images/MEM_ALT/10011-BKBK_02_TABLETOP.jpg
10011-GRGRassets/images/MEM_MAIN/10011-GRGR_01.jpgassets/images/MEM_ALT/10011-GRGR_02_FACE.jpgassets/images/MEM_ALT/10011-GRGR_03_GIRL.jpg
10011-RDBLassets/images/MEM_MAIN/10011-RDBL_01.jpg

<colgroup><col><col><col><col><col><col></colgroup><tbody>
</tbody>
 
Upvote 0

Forum statistics

Threads
1,214,584
Messages
6,120,384
Members
448,956
Latest member
JPav

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top