You would get a much more useful answer if you would give the name of the
table and the field in question. However, assuming the table is called
MyTable and the field is called MyField, and your new column in the query is
called NewColumn, the expression (in the query builder) would look like
this:
NewColumn: IIF([MyField >= 350000, "YES")
In the SQL view, something like this:
SELECT *, IIF([MyField >= 350000, "YES") as NewColumn
FROM MyTable
--
--Roger Carlson
Access Database Samples:
www.rogersaccesslibrary.com
Want answers to your Access questions in your Email?
Free subscription:
http://peach.ease.lsoft.com/scripts/wa.exe?SUBED1=ACCESS-L
I need the code for
If $$ in this column is > or = to 350000 then YES appears in the query.
Can anyone help???
Thanks so much!
Brian Lyons
Bakersfield California