Less than operator not working in binary decision

This forum allows users to post and respond to "How Do I Do ....." questions. The information contained in this forum has not been validated by K-Rise Systems and, as such, K-Rise Systems cannot guarantee the accuracy of the information.
Post Reply
smackie
Posts: 46
Joined: August 26th, 2021, 2:02 pm
Contact:

Less than operator not working in binary decision

Unread post by smackie »

I am trying to use the less than (&lt;) or the less than or equal (&lt;=) to operator in a binary decision and it is resulting in an exception "'&lt;', hexadecimal value 0x3C, is an invalid attribute character.". I've tried using the CDATA button and the canvas will not accept the < symbol.
word count: 53

Tags:
JustinVanRegenmorter
Posts: 536
Joined: August 26th, 2021, 9:56 am
Contact:

Re: Less than operator not working in binary decision

Unread post by JustinVanRegenmorter »

Task #10465 has been created. We will update this post when it has been completed.
word count: 15
SteveCap
Posts: 327
Joined: August 26th, 2021, 9:18 am
Contact:

Re: Less than operator not working in binary decision

Unread post by SteveCap »

The & is causing the issue. To get this to work set the operator to:

Code: Select all

<![CDATA[&]]>lt;
word count: 19
Post Reply