Expression

F

Floyd Forbes

I have a query that has a column name accounts. How do I
create an expression that will turn "mailroom" and "meeting"
in the account column to zero?

Floyd
 
J

John Spencer (MVP)

Use a Calculated Column

Field: SpecialName: IIF([Accounts] = "Mailroom" or [Accounts] = "Meeting","0",[Accounts])
 
Top