biggles1212 Posted October 5, 2013 Posted October 5, 2013 Hello, I have a field I have that will only need to display either "100" or "50". What would a script be that could allow me to click on this field and the value inside changes from "100" to "50" or vice versa. Cheers.
No_access Posted October 5, 2013 Posted October 5, 2013 Make the field a button and use set field Case( Field = 50;100; Field = 100 ;50 )
eos Posted October 5, 2013 Posted October 5, 2013 Case( Field = 50;100; Field = 100 ;50 ) would break on an empty field … better: Case ( Table::field = 50 ; 100 ; 50 ) ];
Recommended Posts
This topic is 4067 days old. Please don't post here. Open a new topic instead.
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now