Sub CopyAcctInfo()
Dim FinalRow As Long
Dim DestRow As Long
Dim MyAccount As Long
Dim i As Long
FinalRow = Cells(Rows.Count, 1).End(xlUp).Row
DestRow = Cells(Rows.Count, 9).End(xlUp).Row
MyAccount = Range("B1").Value
For i = 3 To FinalRow
If Cells(i, 1).Value = MyAccount Then
Range("A" & i, "G" & i).Copy Destination:=Range("I" & DestRow)
DestRow = DestRow + 1
End If
Next i
End Sub