G
Guest
I am running a query to compare 3 fields and I want only the information in
the field with the highest number displayed in the output.
the field with the highest number displayed in the output.
Ginycub22 said:I am running a query to compare 3 fields and I want only the information in
the field with the highest number displayed in the output.
SELECT IIf(col_1 > col_2, col_1, IIf(col_2 > col_3, col_2, col_3)) As
LargestNumber
FROM ...