graviz
Registered User.
- Local time
- Today, 11:58
- Joined
- Aug 4, 2009
- Messages
- 167
I have a field that provides a 1 or 0 based upon if a field contains "-k"
K_Code: IIf(InStr([service_code_string],"-k"),1,0)
Is there a way to search for both "-k" and "QP"
I tried with no luck.
K_Code: IIf(InStr([service_code_string],"-k", "QP"),1,0)
Any idea?
K_Code: IIf(InStr([service_code_string],"-k"),1,0)
Is there a way to search for both "-k" and "QP"
I tried with no luck.
K_Code: IIf(InStr([service_code_string],"-k", "QP"),1,0)
Any idea?