In this formula I would like it to skip blank cells In the "a" column of the sheet I am copying from any suggestions would be appreciated. If there is no data in the A column I want to skip pasting it to the trades sheet.
Code:
Sub copypaste()
Dim lrb As Long
With Sheets("trades")
lrb = .Range("a" & Rows.Count).End(3).Row
Sheets("Journal").Range("a8:n22,T8:T22").Copy
.Range("a" & lrb + 1).PasteSpecial (xlPasteValues), Operation:=xlNone, SkipBlanks _
:=True, Transpose:=False
End With
End Sub