01-29-2015 09:51 AM
I would like to test whether a station global string is a member of a station global string array. If it is, I would like to use a special numerical limit, and if not use the normal limit.
Is there a preferred way to do that? Thanks.
StephenB
Solved! Go to Solution.
01-29-2015 02:13 PM - edited 01-29-2015 02:14 PM
Well, I learned about conditional statements today. (Great explanation here.) I can put this expression in for the low and high limits.
( Contains( StationGlobals.MyStringArray, searchstring,False)) ? LimitTrue : LimitFalse
StephenB