Good day!

I need to save\restore the AutoFilter settings.
There's a problem with multiple criteria on single column. While I can set the multiple criteria by:
Dim arrTemp(0 To 1) As String
arrTemp(0) = "2"
arrTemp(1) = "9/4/2014"
Set myRange = shtLocate.Range(shtLocate.Cells(1, 74), shtLocate.Cells(1, 74))
shtLocate.Range("BV1").AutoFilter _
        Field:=74, _
        Operator:=xlFilterValues, _
        Criteria2:=Array(arrTemp), _
        VisibleDropDown:=True
How may I get the Criteria2 Array back into a variable?
Thank you.