Hi,
I'm starting to lose my mind with this error as I just can't figure it out.
This code:
[code]
Let>Bounce_Code=2
IF>{(%Bounce_Code%=2) OR (%Bounce_Code%=22) OR (%Bounce_Code%=50)}, Goto>SC
Goto>CancelImmediate
Label>SC
[/code]
Returns an error: Error Subroutine/Label Goto>SC Not found!
Does anyone have any suggestions please?
Error - Subroutine/Label not found
Moderators: JRL, Dorian (MJT support)
Problem solved
I found my mistake.
Thanks.
Thanks.
Its good that you found your mistake. For all the future generations of Macro Scheduler users it would be nice to elaborate on the resolution.
It appears to me that you tried to apply more than one Macro Scheduler function on one line. So the fix would be to remove the " Goto>" from the end of the complex if line.
Something like:
It appears to me that you tried to apply more than one Macro Scheduler function on one line. So the fix would be to remove the " Goto>" from the end of the complex if line.
Something like:
Code: Select all
Let>Bounce_Code=2
IF>{(%Bounce_Code%=2) OR (%Bounce_Code%=22) OR (%Bounce_Code%=50)},SC
Goto>CancelImmediate
Label>SC