Use nested IIFs or a translation table.
New_Field_Name: IIF([YourField] = "O", "Other", IIF([YourField] = "B",
"Bill To", IIF([YourField] = "P", "Prepaid", "Unknown")))
Translation_Table --
Letter - text
Word - text
Letter Word
O Other
B Bill To
P Prepaid
Then in your query left join [YourField] to [Translation_Table].[Letter]
field and add [Word] as an alias field.
Want to reply to this thread or ask your own question?
You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.