Thread: macro question
View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.programming
Dean[_5_] Dean[_5_] is offline
external usenet poster
 
Posts: 3
Default macro question

I have a macro that cuts and pastes info to another
column. I want to make it so that whenever i do this it
pastes the data in the next empty cell, right now it
overwrites. How do i make it "look" for next empty cell?
here is what i have

Sub Macro1()
'
' Macro1 Macro

'
' Keyboard Shortcut: Ctrl+d
'
Columns("A:A").Select
Selection.Cut
Columns("M:M").Select
ActiveSheet.Paste
ActiveWorkbook.Save
Application.Run Range("AUTOSAVE.XLA!mcs02.OnTime")
End Sub

Thanks
Dean