basement131
Technical User
i am trying to create a query that changes the names of positions so that i can group them based on similarity. ie. A Sr. VP operations and a Sr. VP Human Resources are the considered the same "Senior Exec", where as the VP operations & VP Human Resources are considered "Senior Manager"
now here is what i have so far.
Position Area: IIf([Position]="GM" Or [Position]="Assistant General Manager","GM/AGM",IIf([Position]="Sr*","Senior Exec","Senior Manager"))
all is ok, except for the following
IIf([Position]="Sr*"
what i want it to do is recognize anything that begins with SR, so that i do not have to type in every position. this does not seem to work and anytime i have a SR position i get a result of "Senior Manager", where as it should result in "Senior Exec",
Now if this is not the simplest request for a early morning.
now here is what i have so far.
Position Area: IIf([Position]="GM" Or [Position]="Assistant General Manager","GM/AGM",IIf([Position]="Sr*","Senior Exec","Senior Manager"))
all is ok, except for the following
IIf([Position]="Sr*"
what i want it to do is recognize anything that begins with SR, so that i do not have to type in every position. this does not seem to work and anytime i have a SR position i get a result of "Senior Manager", where as it should result in "Senior Exec",
Now if this is not the simplest request for a early morning.