How do you end the IF clause? Right now it looks like the clause just goes on to the end of the automation. That can't be right, is it?
For example, I want to do something like this psuedocode:
IF (condition) {
Do this stuff if true
}
Do this stuff no matter what
And it has to be in that order.
But it looks like it only does this:
IF (condition) {
Do this stuff if true
}
Where does the IF clause end? Can I put anything after it?
If I'm understanding you correctly then it all depends on where you click as to where the component ends up. Hopefully this image will help:
Cheers,
Simeon.
Hi Mary
What you want doing ?
May be example:
IF stataus = OPEN
1. Do this stuff if true
2. Do this stuff no matter what
IF status != OPEN
1. Do this stuff no matter what
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.