Thread: Record sets?
View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
Bill Pfister Bill Pfister is offline
external usenet poster
 
Posts: 132
Default Record sets?


Please describe your recordset; specifically, what are the names of the
fields and how it is created (via what query). Are you trying to return the
results of the rs only where age = 33 (essentially filter your rs)?

Regards,
Bill


"JJ" wrote:

Hi I hope this will have a simple answer.

I have the following code.

output = rs!age33

but what i want is to use a variable instead of age33

this is what i hoped would work but didn't and should make thinks
clearer.

lookup_age = 33

Query_Age = "Age" & Lookup_Age

output = rs!query_age

can anyone help