For anyone who need the code I Got it to work.
With ActiveSheet
.AutoFilterMode = False
'Filter data by BFN-500
With Range("F1", Range("F" & Rows.Count).End(xlUp))
.AutoFilter 1, "*BFN-500*"
On Error Resume Next
'Select the data tp be Copied
lastrow = Cells(Rows.Count, "A").End(xlUp).Row
Range("A1:E" & lastrow).SpecialCells(xlCellTypeVisible).Copy
Sheets("BFN-500").Select
'find empty the next cell in cal A and paste data
Set FirstBlankCell = Range("A" & Rows.Count).End(xlUp).Offset(1, 0)
FirstBlankCell.Activate
'paste data
ActiveSheet.Paste
End With
.AutoFilterMode = False
End With