Optuma Forums › Optuma Scripting › rrg script in Signal Tester › Reply To: rrg script in Signal Tester
January 26, 2022 at 6:04 am
#67375
- Topics: 4
- Replies: 7
- Posts: 11
Michael:
One more thing regarding your boolean logic. You might need to add parenthesis around your “c1 or c2” so you don’t confuse the “AND” operator
For example:
c3 AND c1 OR c2
is not the same as
c3 AND (c1 OR c2)
Hope this helps