Expression

  • Thread starter Thread starter Floyd Forbes
  • Start date Start date
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
 
Use a Calculated Column

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