Closest thing I know in Access to the TSQL 'case' expression is the 'switch' function, e.g.
Code:
SELECT switch(Name="Fred","Frederick",Name="Bill","William"), Street, ...
The arguments to the 'switch' function are pairs in the form: expression1, value1, ... value1 is returned if expression1 is true, etc.
Jeff Mason
Custom Apps, Inc.
www.custom-apps.com