G Guest Oct 27, 2004 #1 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?
M Mike Labosh Oct 27, 2004 #2 Can I compare information in one column with information in another column and highlight the results? Click to expand... SELECT * FROM YourTable WHERE ThisColumn = ThatColumn
Can I compare information in one column with information in another column and highlight the results? Click to expand... SELECT * FROM YourTable WHERE ThisColumn = ThatColumn
D Douglas J. Steele Oct 27, 2004 #3 Or SELECT *, IIf([ThisColumn] = [ThatColumn], "Same", "Different") AS Comparison