05-22-2013 07:34 AM
Good afternoon everyone,
Here is my problem:
I need to manage a statement that can have different expressions depending on the results of the previous steps.
I can't use a Select / Case, because the quantity of different cases are almost infinite.
So my idee is to build the specific expression in a string (by concatenating lots of data), but how tell TestStand the string is an expression ? How execute the expression contained in the string?
Thanks for your help!
05-22-2013 09:00 AM
I think you need Evaluate("String")
05-22-2013 10:12 AM
Thank you for your answer. I'll try it and come back to tell you.