UnitedSkysJoey
New Member
- Joined
- Mar 3, 2017
- Messages
- 6
Hello Mr. Excel members!
I am stumped with a Marco need.
Here is (what I think) is a similar macro I already have:
Sub AddRow5()
'
' Cut_PasteSpecial Macro
'
'
Range("C5:S5").Select
Selection.Copy
Sheets("Presentation for Approval").Select
Range("A1:S1").Select
lMaxRows = Cells(Rows.Count, "A").End(xlUp).Row
Range("A" & lMaxRows + 1).Select
Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _
:=False, Transpose:=False
Sheets("AP Formulas").Select
ActiveSheet.Paste
Application.CutCopyMode = False
End Sub
What I need is something that will do almost the exact opposite.
I have a spreadsheet with values in one column. I have another spreadsheet where I want a button that when clicked will return the value from that column next to the first blank row.
Any thoughts on how I can rewrite (or another all new) marco that would get me what I need?
I am stumped with a Marco need.
Here is (what I think) is a similar macro I already have:
Sub AddRow5()
'
' Cut_PasteSpecial Macro
'
'
Range("C5:S5").Select
Selection.Copy
Sheets("Presentation for Approval").Select
Range("A1:S1").Select
lMaxRows = Cells(Rows.Count, "A").End(xlUp).Row
Range("A" & lMaxRows + 1).Select
Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _
:=False, Transpose:=False
Sheets("AP Formulas").Select
ActiveSheet.Paste
Application.CutCopyMode = False
End Sub
What I need is something that will do almost the exact opposite.
I have a spreadsheet with values in one column. I have another spreadsheet where I want a button that when clicked will return the value from that column next to the first blank row.
Any thoughts on how I can rewrite (or another all new) marco that would get me what I need?