Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
I need to move column E over to column A (column A is empty). Is there a
more efficient way (ideally using 1 line of code) to write the code for this operation other than: ActiveSheet.Columns("E:E").Cut ActiveSheet.Range("A1").Select ActiveSheet.Paste Thanks in advance for any help. Bob |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
HI
You could try something like this ActiveSheet.[E:E].Cut Destination:=[A:A] hope it helps S |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
activesheet.columns("C:C").cut activesheet.range("A1")
-- HTH Bob (there's no email, no snail mail, but somewhere should be gmail in my addy) "Bob" wrote in message ... I need to move column E over to column A (column A is empty). Is there a more efficient way (ideally using 1 line of code) to write the code for this operation other than: ActiveSheet.Columns("E:E").Cut ActiveSheet.Range("A1").Select ActiveSheet.Paste Thanks in advance for any help. Bob |
#4
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
"S" and Bob,
Thanks for your help. As always, I greatly appreciate it. Bob "Bob" wrote: I need to move column E over to column A (column A is empty). Is there a more efficient way (ideally using 1 line of code) to write the code for this operation other than: ActiveSheet.Columns("E:E").Cut ActiveSheet.Range("A1").Select ActiveSheet.Paste Thanks in advance for any help. Bob |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
How can this code be made more efficient? | Excel Programming | |||
Can anyone help me convert to more efficient code? | Excel Programming | |||
Efficient Code | Excel Programming | |||
More Efficient code than this | Excel Programming | |||
More efficient code | Excel Programming |