Hi,

No it didn't work. Device_Description_1 value is only "WAVE-474" but the output of filtered data has "WAVE-274-K9-RF". So it is only part of the output, not exactly the same. That's why I used
ActiveSheet.Range("$A$1:$N$221337").AutoFilter Field:=3, Criteria1:="=*WAVE-274*"
before (Criteria1:="=*WAVE-274*").

So I thought if I do

Sub Filter_Data()
    
    Range("A1").Select
    Selection.AutoFilter
    ActiveSheet.Range("$A$1:$N$221337").AutoFilter Field:=3, Criteria1:=Sheets("Info").Range("Device_Description_1").Value & "*"
End Sub
But it doesn't work either