Hi
Need some help with my progaming.
I need to copy numbers from a sheet and paste it to another sheet in a next empty line.
Fx. if column A includes number from line 1-n, I need to paste the numbers in line n+1 >
I hope you understand me
David
Hi
Need some help with my progaming.
I need to copy numbers from a sheet and paste it to another sheet in a next empty line.
Fx. if column A includes number from line 1-n, I need to paste the numbers in line n+1 >
I hope you understand me
David
![]()
Range("D48").Copy Destination:=Range("A65536").End(xlUp).Offset(1, 0)
Thanx for quick answears
Hi again
I need to paste these number in transpose?
David
Perhaps using Copy / Paste route (formatting etc...)
![]()
With Sheets("Sheet1") .Range(.Cells(1,"A"),.Cells(.Rows.Count,"A").End(xlUp)).Copy With Sheets("Sheet2") .Cells(Rows.Count,"A").End(xlUp).Offset(1).PasteSpecial Transpose:=True End With End With Application.CutCopyMode = False
Last edited by DonkeyOte; 05-05-2010 at 07:34 AM. Reason: modified the 2nd With
My Recommended Reading:
Volatility
Sumproduct & Arrays
Pivot Intro
Email from XL - VBA & Outlook VBA
Function Dictionary & Function Translations
Dynamic Named Ranges
thanx, that works for me.
David
There are currently 1 users browsing this thread. (0 members and 1 guests)
Bookmarks