Awesome thanks for the reply. This works. I guess I was asking if, within the translate, for an IF statement condition, can you check a range of values versus doing something like the below or a preproc:
0(0).PV1(0).#3(0).[1] ct =A ||
0(0).PV1(0).#3(0).[1] ct =B ||
0(0).PV1(0).#3(0).[1] ct =C ||
0(0).PV1(0).#3(0).[1] ct =D
then do something like
copy 0(0).PV1(0).#3(0).[1] to 0(0).PV1(0).#3(0).[1] using preproc
set xlateOutVals
1 end ]]
Or
a trimleft like
set ex [lindex $xlateInVals 0]
set ex [string trimleft $ex Z]
set xlateOutVals
Or use your examples
My question surrounds only the IF portion and the condition statement in the GUI. Can you check for a range within the IF condition? Like a ct =[A-Z]? (something like that to show intent).
FYI I ended up using a combination of both of your example for different things. Thank you.