user21136
Active Member
- Joined
- Sep 20, 2003
- Messages
- 325
Hi,
Trying to copy D3 from Sheet1 to the Range("D3:J3") on Sheet2.
Using the code below is OK except I have a value in K3
Is there a way to copy/paste to the first blank column in range please?
Cheers, Glenn.
Trying to copy D3 from Sheet1 to the Range("D3:J3") on Sheet2.
Using the code below is OK except I have a value in K3
Code:
Sheets("Sheet2").Cells(3, Columns.Count).End(xlToLeft).Offset(0, 1).Value = Sheets("Sheet1").Range("D3").Value
Is there a way to copy/paste to the first blank column in range please?
Cheers, Glenn.