You see this in the first code example
http://www.rondebruin.nl/copy5_1.htm
'This will use the cell value from A2 as criteria
'My_Range.AutoFilter Field:=1, Criteria1:="=" & Range("A2").Value
Replace this part with the above
'Filter and set the filter field and the filter criteria :
'This example filter on the first column in the range (change the field if needed)
'In this case the range starts in A so Field 1 is column A, 2 = column B, ......
'Use "<>Netherlands" as criteria if you want the opposite
My_Range.AutoFilter Field:=1, Criteria1:="=Netherlands"
--
Regards Ron de Bruin
http://www.rondebruin.nl/tips.htm
"Seeker" <(E-Mail Removed)> wrote in message news:5DB13988-6D5D-4D4E-93D3-(E-Mail Removed)...
> Ron,
> If I didn’t miss anything, I only located a pre-defined value in your
> example code, what I am looking for is something like Criteria1:="sheet1.A1".
> However, your lists are treasure to me, hope your don’t mind, I have
> bookmarked it for future reference. Thanks again for your help.
> Regards
>
>
> "Ron de Bruin" wrote:
>
>> See my code examples here
>> http://www.rondebruin.nl/copy5.htm
>>
>> See the comments in the code
>>
>>
>> --
>>
>> Regards Ron de Bruin
>> http://www.rondebruin.nl/tips.htm
>>
>>
>>
>>
>> "Seeker" <(E-Mail Removed)> wrote in message news:E0BF7AD4-7FA0-4B46-B7A6-(E-Mail Removed)...
>> > Is it possible pointing the selection to a reference cell instead of the drop
>> > down list?
>>