fpskidmark
Board Regular
- Joined
- Sep 11, 2009
- Messages
- 139
Hi Guys,
This is probably an easy fix, but I've been struck on this for a while now.
Range("B" & Rows.Count) - This will give me the last available row in column B, but I need the paste to start at range("B12"), then B13, B14, B15 etc...
Any suggestions?
Thank you,
FP
This is probably an easy fix, but I've been struck on this for a while now.
Range("B" & Rows.Count) - This will give me the last available row in column B, but I need the paste to start at range("B12"), then B13, B14, B15 etc...
Any suggestions?
For sa = 3 To 39
If Sheets("Pts").Range("c" & sa) = "a" Then
Sheets("Pts").Range("D" & sa & ":f" & sa).Copy
Sheets("Report Card").Range("B" & Rows.Count).End(xlUp).Offset(1).PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks:=False, Transpose:=False
End If
Next sa
Thank you,
FP
Last edited: