Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Is there a way to programatically move the contents of an
entire column to another? (i.e. switch the contents of column A with the contents of column C). Any help is greatly appreciated as always. Thankyou. Matthew. |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hi Matthew,
Columns("A:A").Cut Columns("C:C").Insert Shift:=xlToRight Columns("C:C").Cut Columns("A:A").Insert Shift:=xlToRight -- HTH Bob Phillips ... looking out across Poole Harbour to the Purbecks (remove nothere from the email address if mailing direct) "Matthew" wrote in message ... Is there a way to programatically move the contents of an entire column to another? (i.e. switch the contents of column A with the contents of column C). Any help is greatly appreciated as always. Thankyou. Matthew. |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hi
I would do it as following (and you can record a macro while doing this manually): - copy one column to a helper column (e.g. column IV) - copy col. 2 to column 1 - copy columne IV to column 2 -- Regards Frank Kabel Frankfurt, Germany "Matthew" schrieb im Newsbeitrag ... Is there a way to programatically move the contents of an entire column to another? (i.e. switch the contents of column A with the contents of column C). Any help is greatly appreciated as always. Thankyou. Matthew. |
#4
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Thankyou both for the help. Both ideas worked just fine.
-----Original Message----- Is there a way to programatically move the contents of an entire column to another? (i.e. switch the contents of column A with the contents of column C). Any help is greatly appreciated as always. Thankyou. Matthew. . |
#5
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
I believe this routine would swap Columns 1 & 3 (or A & C)
SwapColumns 1, 3 Sub SwapColumns(c1, c2) Columns(c1).Copy Columns(c2).Insert Columns(c2 + 1).Cut Columns(c1).Select ActiveSheet.Paste Columns(c2 + 1).Delete End Sub HTH Dana DeLouis "Matthew" wrote in message ... Is there a way to programatically move the contents of an entire column to another? (i.e. switch the contents of column A with the contents of column C). Any help is greatly appreciated as always. Thankyou. Matthew. |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
how to move contents in column up one cell | Excel Worksheet Functions | |||
move contents of column C based on criteria related to column A | Excel Discussion (Misc queries) | |||
Macro to remove contents of cell and move all other contents up one row | Excel Discussion (Misc queries) | |||
Excel: is it possible to move column contents into a line | Excel Discussion (Misc queries) | |||
Macro to move selected cell contents to a specific column on same row | Excel Programming |