redspanna
Well-known Member
- Joined
- Jul 27, 2005
- Messages
- 1,604
- Office Version
- 365
- Platform
- Windows
Hi all,
I have this code...
I want the next available cell chosen in row X but my code keeps selecting the last cell populated and I can't remember how to select the next available cell.
Hellllllllp !!
I have this code...
Code:
Sub test()
Sheets("sheet1").Select
Range("x14").Select
Selection.Copy
Sheets("graphs").Select
Range("x65536").End(xlUp).Select
Selection.PasteSpecial Paste:=xlValues, Operation:=xlNone, SkipBlanks:= _
False, Transpose:=False
Application.CutCopyMode = False
Selection.NumberFormat = "d-mmm-yy"
Selection.Font.Size = 8
End Sub
I want the next available cell chosen in row X but my code keeps selecting the last cell populated and I can't remember how to select the next available cell.
Hellllllllp !!