Forum Discussion

rmnrdi's avatar
rmnrdi
Contributor
7 years ago
Solved

"If object " doesn't work no matter what condition I put into it.

Basically, I have an order entry form that I need to populate.    If the form is already open, I don't want an instance launched. If the form is not open, I want to launch one from a launchpad type...
  • baxatob's avatar
    7 years ago

    You are using wrong indentation. You should place all required actions inside IF module:

     

    IF something
        do something

    Currently you have:

     

    IF something
    do something   <- it is not a part of IF statement, it is just a sequential step