Breaking a col into smaller parts

gilbert

Board Regular
Joined
Jun 13, 2002
Messages
141
I have a col of names in col A. there are 7000 or more. I need a formula or method to break out into groups of 500 each and paste each 500 group into col b c d e f g and so on.

Thanks

Galen
 

Excel Facts

How to calculate loan payments in Excel?
Use the PMT function: =PMT(5%/12,60,-25000) is for a $25,000 loan, 5% annual interest, 60 month loan.
I think you're saying they are in unique rows (ie 7000 rows rather than 7000 names in one cell!)

assuming they appear in A1:A7000

TO get 1 to 500 in B1:B500

set formula in B1 = OFFSET($A1,0+(500*(COLUMN(B1)-2)),0)

copy B1 through to B500 then copy B1:B500 and paste in C1, D1, E1, F1 etc...

Once complete copy your final range (eg B1:O500 for 7000 cells exactly) and paste into B1 as values only (ie override formulae)
 
Upvote 0
Try this in B1 Filled right and down as needed.

=INDEX($A:$A,ROWS(A$1:A1)+(500*(COLUMNS($A1:A1)-1)))

Hope that helps..
 
Upvote 0

Forum statistics

Threads
1,214,659
Messages
6,120,786
Members
448,992
Latest member
prabhuk279

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