Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]() What would be the code to move the columns "J" "K" "L" & "M" from one Tab labeled Invoice to Another labeled Master. They would need to be moved to the same columns. (Hence J, K, L, & M) Thanks, Met -- Metrazal ------------------------------------------------------------------------ Metrazal's Profile: http://www.excelforum.com/member.php...o&userid=31648 View this thread: http://www.excelforum.com/showthread...hreadid=515410 |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hi
Try this Sheets("Invoice ").Columns("J:M").Copy Sheets("Master").Range("J1") -- Regards Ron de Bruin http://www.rondebruin.nl "Metrazal" wrote in message ... What would be the code to move the columns "J" "K" "L" & "M" from one Tab labeled Invoice to Another labeled Master. They would need to be moved to the same columns. (Hence J, K, L, & M) Thanks, Met -- Metrazal ------------------------------------------------------------------------ Metrazal's Profile: http://www.excelforum.com/member.php...o&userid=31648 View this thread: http://www.excelforum.com/showthread...hreadid=515410 |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Try this:
Sub CopyToMaster() Worksheets("Invoice").Range("J:M").Copy Destination:=Worksheets("master").Range("J:M") End Sub This makes a raw copy of the whole columns. If you want to copy values only (formulaes' result) only, or optimize thz number of cells to be copied, please ask HTH, -- AP "Metrazal" a écrit dans le message de ... What would be the code to move the columns "J" "K" "L" & "M" from one Tab labeled Invoice to Another labeled Master. They would need to be moved to the same columns. (Hence J, K, L, & M) Thanks, Met -- Metrazal ------------------------------------------------------------------------ Metrazal's Profile: http://www.excelforum.com/member.php...o&userid=31648 View this thread: http://www.excelforum.com/showthread...hreadid=515410 |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
move cell contents | Excel Discussion (Misc queries) | |||
Macro to remove contents of cell and move all other contents up one row | Excel Discussion (Misc queries) | |||
When I move scroll bar in excell the contents do not move with it | Excel Discussion (Misc queries) | |||
How to move cell contents | Excel Discussion (Misc queries) | |||
Move Folder Contents | Excel Programming |