Sorry if this has been asked before. I read through at least fifteen different posts and have not found anything that works for me. I'm sure it's super simple and I'm just not getting it. I am using responsive forms (on-premise). I have a single line textbox control named "Part#". I want to hide this control based on two other controls. But it needs to be an "or" statement. I only want to show the Part# field if the Cost is less than "4900" OR if Classification (choice field) is equal to "Classified".
I applied a rule to the control and have tried the rule to hide with the following functions with no luck:
- Classification!="Classified" || Cost<"4900"
- or(Classification!="Classified",Cost<"4900")
- not(or(Classification=="Classified",Cost>"4900"))
And oddly enough some of these rules ended up acting like an && because if I selected the Classified choice and put a cost of 5000 then the field was revealed but not if I did just Classified or just 5000, it stays hidden. For testing, I added the Calculated value to reveal the value of my choice field in the case the Classified wasn't the actual value, thinking it might be a numerical value but it appeared in the value field as Classified.
Best answer by MegaJerk
View original