access expressions

G

Guest

flyboy said:
how do I write this expression in a query:Count = 1=$100.00, 2=$500.00,

Try this:

IIf([Count] = 1, 100, IIf([Count] = 2, 500, 1000))

Tom Lake
 
Top