Link to home
Start Free TrialLog in
Avatar of D J
D JFlag for United States of America

asked on

How can I add static text to my drop down project name field?

How can I add text to my drop down query to add "Compl" to the project Name if Status is Completed?

In my query design:
Table:
Projects
Fields:
Project Name
Status

Projects have a status of "working" or "completed".
If a project has a status of "completed" how can I add "Compl-" to the project name:
Example:
Compl - Replace Shingles on North Side

My attempt: (added statement in criteria in query design view under the ProjectName field)
IIf([Status]="Completed",(&"Compl-"&[Projects]![ProjectName]),([Projects]![ProjectName]) ) ---not working

Also, how can I put the projects with "Compl-" in the bottom of the list?
ASKER CERTIFIED SOLUTION
Avatar of PatHartman
PatHartman
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of D J

ASKER

Thanks Pat,

Can you format for the query builder?
Under what field do I input your IIf statement?
Can you format for the query builder?
Under what field do I input your IIf statement?
Just switch from the query builder mode to SQL mode (first icon in the ribbon), copy / paste the query and switch back to query builder mode.
Don't forget to use the correct names for the columns.  Just eliminate the extra fields if you only need the two named ones.
Avatar of D J

ASKER

Worked Great, Thanks!