Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
English
String Comparisons
Mensaje
 
a
01/02/2000 16:36:57
General information
Foro:
Visual FoxPro
Category:
Programación, sintáxis y comandos
Título:
Miscellaneous
ID de la conversación:
00325827
ID del mensaje:
00325833
Views:
20
>I have a problem with my nested immediate if statement. The problem is if a materialid equals VX5 it is given it the value of qty2 when it should be given the number 1. It is VX50 or VX57 that have to be an exact match to receive the value of qty2. The same is true for the rest of them.
>
>Here is my statement.
>
>iif(alltrim(materialid) $ "VX29,VX39", qty3, iif(alltrim(materialid) $ "VX57,VX50", qty2, (iif(alltrim(materialid) $ "VX51",qty, (iif (alltrim(materialid) $ "CJ30,CJ31,CJ32,CJ33,CJ34,CJ35,CJ36,CJ37,CJ38,CJ39,CJ40", "2","1"))))))
>
>Can anyone help me with the correct syntax that will give me the totals that I want.
>
>Thanks in advance,
>Tyler

The $ comparison can only be to 1 string value:

iif["VX29" $MaterialID, True_Return_Value, False_Return_Value]

If you do not need alltrim:

iif[inlist(MaterialID, "VX29", "VX39"), True_Return_Value, False_Return_Value]
Mark McCasland
Midlothian, TX USA
Previous
Responder
Mapa
Ver

Click here to load this message in the networking platform