I am driving an assembly with a relation.
It is case sensitive (upper case)
Is there a way to make it so it will accept both upper and lower case text in one statement?
Below is a basic example of my solution
IF MODEL_DESC == "AA"
g_p_distance:0 = 8
width:0 = 10
ENDIF
IF MODEL_DESC == "aa"
g_p_distance:0 = 8
width:0 = 10
ENDIF
I would like to make it something like this
IF MODEL_DESC == "AA" or "aa"
Any Ideas?
Mike
It is case sensitive (upper case)
Is there a way to make it so it will accept both upper and lower case text in one statement?
Below is a basic example of my solution
IF MODEL_DESC == "AA"
g_p_distance:0 = 8
width:0 = 10
ENDIF
IF MODEL_DESC == "aa"
g_p_distance:0 = 8
width:0 = 10
ENDIF
I would like to make it something like this
IF MODEL_DESC == "AA" or "aa"
Any Ideas?
Mike