View Single Post
  #3   Report Post  
Posted to microsoft.public.excel.programming
Bob Phillips[_3_] Bob Phillips[_3_] is offline
external usenet poster
 
Posts: 2,420
Default Setting Criteria in VBA

Range("H1").Value = "=" & Range("A1").Value

--
__________________________________
HTH

Bob

"Graham H" wrote in message
...
I have to set criteria for an advanced filter action in a particular way
because of the nature of the data. If I have Field 1 for example as the
citeria I have to enter this as
="=Field 1" and it selects the correct data perfectly and I am grateful to
Dave Peterson for making me aware of this. I thought I was on a roll then
but hit a wall when I tried to enter this in a procedure. If Field 1 is in
A1 and I want to put the correct format of criteria reference in cell H1
using VBA, can this be done or do I have to rethink the filtering concept?
I would value any help.

Graham