March 1, 200619 yr Newbies 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.
March 1, 200619 yr 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 ""
March 1, 200619 yr In scripting it would be: If[test] Result if true Else Result if not true End If ~Genx
Create an account or sign in to comment