Looking to create an IF statement that will help me establish a specific rule. On a customer portal page, customers can open tickets via a form where they provide information such as "software product" and "environment" from dropdown lists, as well as other fields like "Suite version." The IF statement I require is:
If (software product = ‘TEST’) then HIDE the “Suite Version” field.
This is necessary because selecting “TEST” will trigger another level of the “Software Product” field. I am able to implement this using Jquery JavaScript.
Thank you in advance.