I have an excel sheet with 2 columns as below:
IMPORT_ID EXPORT_ID
SI1313721 SI1440839
SI1313721 SI1440997
SI1313722 SI1440672
SI1313722 SI1440776
SI1313722 SI1441313
IMPORT_IDs are getting repeated (SI1313721 - 2 times and SI1313722 - 3 times). I want to transpose this sheet into
SI1313721 SI1440839 SI1440997
SI1313722 SI1440672 SI1440776 SI1441313
How do I do that in Excel probably with vba?
I'm not sure if the order that they are stacked on the right matters but you could try this.
The rows are deleted as the values from column B are stacked to the right. It is usually better to start at the bottom and work up when deleting rows.