Hey all, long time lurker first time poster.
I'm trying to create a macro that will copy and paste information from one workbook to another, without overwritting information that is already on the page.
Essentially, what I want to do is copy and paste on the next available line.
Thus far, I have:
Sub MacroH()
'
' MacroH Macro
' Macro will convert data onto CSV.
'
' Keyboard Shortcut: Ctrl+h
'
Range("A1:AC24").Select
Range("A24").Activate
Selection.Copy
Windows("CSV Values.csv").Activate
NextRow = Sheets("CSV Values").Range("F65536").End(xlUp).Row
Cells(NextRow, 1).Select
Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _
:=False, Transpose:=False
End Sub
The sheet that I am copying to is also in CSV format. Not sure if this would have any impact on what I am trying to do. Any help would be fannnnnntastic.
