Hello all, sorry if this has already been covered
I simply want a macro in excel that will do the following;
copy the contents of cell A1 to windows clipboard (to paste into another program using Ctrl V)
delete cell A1 moving column up
select cell A! for next time.
Ive tried;
Sub Macro1()
'
' Macro1 Macro
'
' Keyboard Shortcut: Ctrl+z
'
Range("A1").Copy
ActiveCell.FormulaR1C1 = ""
Range("A1").Select
Selection.Delete Shift:=xlUp
End Sub
but when I go tho the program field I want to copy to, its not there.
Any tips please
I simply want a macro in excel that will do the following;
copy the contents of cell A1 to windows clipboard (to paste into another program using Ctrl V)
delete cell A1 moving column up
select cell A! for next time.
Ive tried;
Sub Macro1()
'
' Macro1 Macro
'
' Keyboard Shortcut: Ctrl+z
'
Range("A1").Copy
ActiveCell.FormulaR1C1 = ""
Range("A1").Select
Selection.Delete Shift:=xlUp
End Sub
but when I go tho the program field I want to copy to, its not there.
Any tips please