I am using an if statement to evaluate two different Chat priorities from a Data Table. For example, if A > B, return A, otherwise B.
When I evaluate a 5-digit Integer to a 6-digit Integer it does not evaluate correctly. However, evaluating the two with the same number of digits works correctly. Do I need to set a min and max value in the output contract? I could not find help in the documentation for below.
What you are describing sounds like the numbers are being treated like strings. Where is the comparison being preformed? If it is in Architect you might need to surround the variables you are comparing with a ToInt(your_variable_here).