How to define multiple variables from the results of a single IF statement?
A simplified example probably illustrates my question best:

I would like to set multiple variables based on the value of A in my example above.
Thanks,
Kevin
A simplified example probably illustrates my question best:

I would like to set multiple variables based on the value of A in my example above.
Thanks,
Kevin
You're using the 'equals' operator "=" where you should use the assignment operator for programs "<-".
So do like this:

You use:
to test if A equals the string "Value1". The result is either True (nonzero) or false (zero).
You use:
to assign a value of 3 to the variable x, outside of programming.
Inside of a program, the assignment should look like:

Success!
Luc
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.