Is there a formula that will compare elements in one column to an.

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Can I compare information in one column with information in another column
and highlight the results?
 
Can I compare information in one column with information in another column
and highlight the results?

SELECT * FROM YourTable WHERE ThisColumn = ThatColumn
 
Or

SELECT *, IIf([ThisColumn] = [ThatColumn], "Same", "Different") AS
Comparison
 

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

Back
Top