Hi Graham,
Try this instead
Sub PasteStuff()
Dim lngNextRow As Long
Application.ScreenUpdating = False
Sheets("Job Status").Select
' Unfilter sheet if required
If ActiveSheet.FilterMode = True Then
ActiveSheet.ShowAllData
End If
' Add extra line into account status
ActiveSheet.ListObjects("Table7").ListRows.Add AlwaysInsert:=True
'Get last row + 1
lngNextRow = ActiveSheet.Cells(Rows.Count, "A").End(xlUp).Row + 1
'Last row + 1 in Column A = cell A200 value from sheet "Quote Nos"
Range("A" & lngNextRow) = Sheets("Quote Nos").Range("A200").Value
Application.ScreenUpdating = True
End Sub
Does this work?
Pete