Hi I want to filter data using Cell names


My Filtering data is in Sheet1 and the criterial data is in Sheet3

In Sheets("Info").Range("Device_Description_1") I have the value WAVE-274.

So I have wrote a working code to filter data using

Sub Macro2()
    Range("A1").Select
    Selection.AutoFilter
    ActiveSheet.Range("$A$1:$N$221337").AutoFilter Field:=3, Criteria1:= _
        "=*WAVE-474*"
  End Sub

but now I want to change Criteria1:= "=*WAVE-474*" and make Criteria1:= Sheets("Info").Range("Device_Description_1").Value.

As long as the cell contains "Device_Description_1" Value, it should filter but I am not getiing any data.

Any idea how to do it?

Thanks In advance,