View Full Version : Conditional cell changing based on other criteria


Access9001
03-04-2010, 06:54 AM
Say I bring up a result

select * from mytable

Location, Name

Atlanta John
Miami Mike
DC Kathy

etc

Is there a way to say, after this query executes (or even within this query), if name=something, rename Location field to something else? Thanks

Brianwarnock
03-04-2010, 07:21 AM
Are you talking about an Update to the table or a change for a report say?

Brian

Access9001
03-04-2010, 07:29 AM
Update to the table

Brianwarnock
03-04-2010, 07:41 AM
Then it is a simple update query, your updateto for the location will be an IIf

Brian