Copying select data from one worksheet to the other.....

Pincer360

New Member
Joined
Mar 22, 2018
Messages
2
Hello,

Need help with the following -

I have the following information in one sheet <Sheet1> in Column A. This list is very long (1000s of names). I need this information to move to <Sheet2> in this format - Name (Column A), Designation (Column B), Company Name (Column C). The <Useless Info> can be totally ignored.

<Sheet1, Column A>
Name
Designation
Company Name
<Useless Info#1>
<Useless Info#2>
Name1
Designation1
Company Name1
<Useless Info#1>
<Useless Info#2>
Name2
Designation2
Company Name2
<Useless Info#1>
<Useless Info#2>
.......

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

Thanks in advance for your help.

Regards,
-P360
 

Excel Facts

Does the VLOOKUP table have to be sorted?
No! when you are using an exact match, the VLOOKUP table can be in any order. Best-selling items at the top is actually the best.
Welcome to the MrExcel board!

Your sample data did not post very well. You have to be careful using < and > signs as the forum software tends to interpret them as HTML tags. See my signature block below for better ways to post sample data.

Assuming there are exactly 5 rows for each section try these formulas, copied down. I have done it on a single sheet but post back if you have difficulty applying it across 2 sheets.

Excel Workbook
ABCDE
1NameNameDesignationCompany Name
2DesignationName1Designation1Company Name1
3Company NameName2Designation2Company Name2
4Useless Info#1
5Useless Info#2
6Name1
7Designation1
8Company Name1
9Useless Info#1
10Useless Info#2
11Name2
12Designation2
13Company Name2
14Useless Info#1
15Useless Info#2
List



If the number of rows per section varies, you would need to give us some way to logically work out where the start of each section is.
 
Upvote 0
or you can just copy this into C2 and drag to the right and down...

=IF(INDEX($A$1:$A$1000,ROWS($C$2:C2)*5-4+COLUMNS($C$2:C2)-1)="","",INDEX($A$1:$A$1000,ROWS($C$2:C2)*5-4+COLUMNS($C$2:C2)-1))
 
Upvote 0

Forum statistics

Threads
1,214,987
Messages
6,122,614
Members
449,091
Latest member
gaurav_7829

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