Newbies mji_platinum Posted March 1, 2006 Newbies Posted March 1, 2006 I am having a hard time creating an "If" script. All I want to do is: IF a particular field equals "copy that is part of a drop down menu"; I would like to switch layouts (to a layout within the same database). I'm sure this is easy, but I'm having a hard time.
BowDown Posted March 1, 2006 Posted March 1, 2006 If( table::fieldSource = table::fieldThatIsADropDown ; doThis ; elseDoThis) table::fieldSource = field name you wanna compair to the drop down. table::fieldThatIsADropDown = name of field that is setup as a dropDown list. doThis = if the condition is true, put what you want to happen here elseDoThis = if the condition is false, what you put here will happen. If you don't want anything to happen just put ""
Genx Posted March 1, 2006 Posted March 1, 2006 In scripting it would be: If[test] Result if true Else Result if not true End If ~Genx
Recommended Posts
This topic is 6844 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