I have a 2x2 matrix question - 1 row for Highest and 1 row for Lowest. How do I validate that the value entered into the Highest field is greater than the value entered in the Lowest field?
Solved
How do I validate that one field in a matrix table is a greater value than another?
Best answer by liwesu
Edit: Solved using custom validation with regex matching to ensure only numbers entered and then Piped Text for the comparison of values.
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.

the regex I used for digits (since it's slightly cut off in the screenshot) was: /\\d+(,\\d{3})?(.\\d{2})?/ - this allows numbers like 1, 100, 99.00, 10,000 and so on.