October 5, 201312 yr 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.
October 5, 201312 yr Make the field a button and use set field Case( Field = 50;100; Field = 100 ;50 )
October 5, 201312 yr Solution Case( Field = 50;100; Field = 100 ;50 ) would break on an empty field … better: Case ( Table::field = 50 ; 100 ; 50 ) ];
Create an account or sign in to comment