Field Comparison

G

Guest

My problem is that I want to run eathier a query or macro
that will let me compare the data from one field to the
data in another and perform a sorta Like "*Field1*" and
return a field which is similar to Field 1. I dont think
can use the Instr() functio. Does anyone no a better
solution?

Cheers,
Justin
 
J

John Vinson

My problem is that I want to run eathier a query or macro
that will let me compare the data from one field to the
data in another and perform a sorta Like "*Field1*" and
return a field which is similar to Field 1. I dont think
can use the Instr() functio. Does anyone no a better
solution?

Try

LIKE "*" & [Field1] & "*"
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top