i have a column of figures which is spread over 3 columns and anyware from 200 to 2000 rows, can any one suggest a method of splitting the no of rows in half and move it to the top row but to cell “E2”
![]() |
Patch reliability is unclear, but widespread attacks make patching prudent. Go ahead and patch, but watch out for potential problems. |
SIGN IN | Not a member? | REGISTER | PLUS MEMBERSHIP |
-
excel column split in 2 (officeXP)
Home » Forums » AskWoody support » Productivity software by function » Visual Basic for Applications » excel column split in 2 (officeXP)
- This topic has 10 replies, 4 voices, and was last updated 21 years, 5 months ago.
AuthorTopicWSalexanderd
AskWoody LoungerJanuary 19, 2004 at 8:06 pm #399349Viewing 7 reply threadsAuthorReplies-
WSgellwood
AskWoody Lounger -
WSgellwood
AskWoody Lounger -
WSJohnBF
AskWoody LoungerJanuary 20, 2004 at 12:29 am #770814 -
WSJohnBF
AskWoody LoungerJanuary 20, 2004 at 12:29 am #770815 -
WSKingMartin
AskWoody LoungerJanuary 20, 2004 at 9:18 am #771018Hello,
try this:Sub HalfRange() RowsCnt = Range([a2], [a65536].End(3)).Rows.Count FstRowToMove = RowsCnt 2 + 1 Set srcRange = Range("A" & FstRowToMove).Resize(RowsCnt - FstRowToMove + 2, 3) Set trgRange = [e2].Resize(RowsCnt - FstRowToMove + 2, 3) srcRange.Copy trgRange srcRange.Clear End Sub
It’s an air-code, not tested. I assume you start in [A2], otherwise adjust +1 and +2 in the code.
-
WSKingMartin
AskWoody LoungerJanuary 20, 2004 at 9:18 am #771019Hello,
try this:Sub HalfRange() RowsCnt = Range([a2], [a65536].End(3)).Rows.Count FstRowToMove = RowsCnt 2 + 1 Set srcRange = Range("A" & FstRowToMove).Resize(RowsCnt - FstRowToMove + 2, 3) Set trgRange = [e2].Resize(RowsCnt - FstRowToMove + 2, 3) srcRange.Copy trgRange srcRange.Clear End Sub
It’s an air-code, not tested. I assume you start in [A2], otherwise adjust +1 and +2 in the code.
-
WSJohnBF
AskWoody LoungerJanuary 20, 2004 at 4:52 pm #771247This version replaces my earlier post which had bugs. It will move anything out of bottom half of the first three columns into Column E without losing any data:
Sub halfrows()
Dim intC As Integer
Dim lngRowTrim As Long
For intC = 1 To 3
lngRowTrim = Int(Cells(65536, intC).End(xlUp).Row / 2)
Range(Cells(65536, intC).End(xlUp), Cells(lngRowTrim + 1, intC)).Cut _
[E65536].End(xlUp).Offset(1, 0)
Next intC
End SubIf you need, a more generic version can be written which will move anything out of any number of selected columns to the next unused column.
-
WSalexanderd
AskWoody LoungerJanuary 20, 2004 at 7:06 pm #771287whilst i appreciat4e every ones help i have been given the following solution which works perfectly.
sub SplitCopyPaste
dim LastRow as interger
LastRow=sheets(“sheet1”).UsedRange.Rows.count
‘ (1) LastRow / 2 gives the centre position of the column
‘ (2) ((LastRow/2)+1,1) the +1 is to make the columns equal in length
‘ (3) (LastRow,3) the “3” represents the noumber of columns
‘ (4) Range(“E2”) is the position of the row for the second part of the split range
Range(Cells(Int(LasRow/2)+3,1, Cells(LastRow,3).Cut Destination:=Range(“E2”)
end sub
it dose work having tried it , and it might be of help to some one else whose looking for a solution. -
WSalexanderd
AskWoody LoungerJanuary 20, 2004 at 7:06 pm #771288whilst i appreciat4e every ones help i have been given the following solution which works perfectly.
sub SplitCopyPaste
dim LastRow as interger
LastRow=sheets(“sheet1”).UsedRange.Rows.count
‘ (1) LastRow / 2 gives the centre position of the column
‘ (2) ((LastRow/2)+1,1) the +1 is to make the columns equal in length
‘ (3) (LastRow,3) the “3” represents the noumber of columns
‘ (4) Range(“E2”) is the position of the row for the second part of the split range
Range(Cells(Int(LasRow/2)+3,1, Cells(LastRow,3).Cut Destination:=Range(“E2”)
end sub
it dose work having tried it , and it might be of help to some one else whose looking for a solution.
-
-
WSJohnBF
AskWoody LoungerJanuary 20, 2004 at 4:52 pm #771248This version replaces my earlier post which had bugs. It will move anything out of bottom half of the first three columns into Column E without losing any data:
Sub halfrows()
Dim intC As Integer
Dim lngRowTrim As Long
For intC = 1 To 3
lngRowTrim = Int(Cells(65536, intC).End(xlUp).Row / 2)
Range(Cells(65536, intC).End(xlUp), Cells(lngRowTrim + 1, intC)).Cut _
[E65536].End(xlUp).Offset(1, 0)
Next intC
End SubIf you need, a more generic version can be written which will move anything out of any number of selected columns to the next unused column.
Viewing 7 reply threads -

Plus Membership
Donations from Plus members keep this site going. You can identify the people who support AskWoody by the Plus badge on their avatars.
AskWoody Plus members not only get access to all of the contents of this site -- including Susan Bradley's frequently updated Patch Watch listing -- they also receive weekly AskWoody Plus Newsletters (formerly Windows Secrets Newsletter) and AskWoody Plus Alerts, emails when there are important breaking developments.
Get Plus!
Welcome to our unique respite from the madness.
It's easy to post questions about Windows 11, Windows 10, Win8.1, Win7, Surface, Office, or browse through our Forums. Post anonymously or register for greater privileges. Keep it civil, please: Decorous Lounge rules strictly enforced. Questions? Contact Customer Support.
Search Newsletters
Search Forums
View the Forum
Search for Topics
Recent Topics
-
Name of MS Word Formatting Feature
by
John Baum
2 hours, 50 minutes ago -
InControl Failure?
by
Casey H
3 hours, 33 minutes ago -
Microsoft : Free 1 year support for Windows 10 after EOL
by
Alex5723
1 hour, 57 minutes ago -
MS-DEFCON 3: Businesses must tread carefully
by
Susan Bradley
3 hours, 9 minutes ago -
McLaren Health Care says data breach impacts 743,000 patients
by
Nibbled To Death By Ducks
19 hours, 29 minutes ago -
WhatsApp banned on House staffers’ devices
by
Alex5723
14 hours, 31 minutes ago -
Is your device eligible?
by
Susan Bradley
22 hours, 28 minutes ago -
Windows 11 Insider Preview build 26200.5661 released to DEV
by
joep517
1 day, 4 hours ago -
Windows 11 Insider Preview build 26120.4452 (24H2) released to BETA
by
joep517
1 day, 4 hours ago -
Hello Windows…My Problem is Windows Hello…
by
rdleib
1 day, 5 hours ago -
New Canon Printer Wants Data Sent
by
Win7and10
1 day, 6 hours ago -
I set up passkeys for my Microsoft account
by
Lance Whitney
19 hours, 44 minutes ago -
AI is for everyone
by
Peter Deegan
1 day, 5 hours ago -
Terabyte update 2025
by
Will Fastie
23 hours, 50 minutes ago -
Migrating from Windows 10 to Windows 11
by
Susan Bradley
2 hours, 43 minutes ago -
Lost sound after the upgrade to 24H2?
by
Susan Bradley
8 minutes ago -
How to move 10GB of data in C:\ProgramData\Package Cache ?
by
Alex5723
8 hours, 29 minutes ago -
Plugged in 24-7
by
CWBillow
1 day, 14 hours ago -
Netflix, Apple, BofA websites hijacked with fake help-desk numbers
by
Nibbled To Death By Ducks
2 days, 18 hours ago -
Have Copilot there but not taking over the screen in Word
by
CWBillow
2 days, 15 hours ago -
Windows 11 blocks Chrome 137.0.7151.68, 137.0.7151.69
by
Alex5723
4 days, 9 hours ago -
Are Macs immune?
by
Susan Bradley
1 day ago -
HP Envy and the Function keys
by
CWBillow
3 days, 17 hours ago -
Microsoft : Removal of unwanted drivers from Windows Update
by
Alex5723
1 day, 10 hours ago -
MacOS 26 beta 1 dropped support for Firewire 400/800
by
Alex5723
4 days, 20 hours ago -
Unable to update to version 22h2
by
04om
2 days, 5 hours ago -
Windows 11 Insider Preview Build 26100.4482 (24H2) released to Release Preview
by
joep517
5 days, 4 hours ago -
Windows 11 Insider Preview build 27881 released to Canary
by
joep517
5 days, 4 hours ago -
Very Quarrelsome Taskbar!
by
CWBillow
4 days, 14 hours ago -
Move OneNote Notebook OFF OneDrive and make it local
by
CWBillow
5 days, 17 hours ago
Recent blog posts
Key Links
Want to Advertise in the free newsletter? How about a gift subscription in honor of a birthday? Send an email to sb@askwoody.com to ask how.
Mastodon profile for DefConPatch
Mastodon profile for AskWoody
Home • About • FAQ • Posts & Privacy • Forums • My Account
Register • Free Newsletter • Plus Membership • Gift Certificates • MS-DEFCON Alerts
Copyright ©2004-2025 by AskWoody Tech LLC. All Rights Reserved.