Comparing Tables in access

G

Guest

I have two tables I am comparing a like field on; which must meet specified
valid criteria from a third table. So, if the field meets the criteria, and
the two fields match then return that value.

I would appreciate any help.

Thanks.
 
A

Arvin Meyer [MVP]

An expression in a query on the tables will work. First run a query or
queries which forces the criteria into a column with the correct data. Then
do your comparison in another column.:

IIf([ColumnA]=[ColumnB], [ColumnC], "")
 

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