You could write a complex, hard to maintain IIf statement. Below will
get
you started.
IIf([MP] = "BM", "Business Mail", IIf([MP]="BE", "Business E-Mail",
"Unknown"))
However you'd be much better off doing things right the first time. If
you're in too much of a hurry to do it right now, will you have time to
fix
it in the future?
--
Jerry Whittle, Microsoft Access MVP
Light. Strong. Cheap. Pick two. Keith Bontrager - Bicycle Builder.
beth said:
I'm under a little time contraint. Isn't there an expression like If
[MP]=BE,
print "Business E-mail"?
:
Create a new table called tblMailingPreference.
Make a text field named MP and also make it the primary key.
Make another text field named MailingPreference.
Populate the new table with the appropriate data. Then link the new
table to
the original by the MP fields in a query. Use the MailingPreference
field to
show the words that you wish to see.
--
Jerry Whittle, Microsoft Access MVP
Light. Strong. Cheap. Pick two. Keith Bontrager - Bicycle Builder.
:
Field MP contains 2 alpha characters (BM, BE, HM, or HE)
representing a
mailing preference. I would like my report, which will become a
renewal form,
to print (Business E-mail, Business Mail, etc).
Any suggestions?