Hello,
I am trying to migrate my bots from v11 to A360.
But the modulo operator (%) in number assign action does not work.
Am I missing something or is there another way to calculate modulo?
Thanks.
Hello,
I am trying to migrate my bots from v11 to A360.
But the modulo operator (%) in number assign action does not work.
Am I missing something or is there another way to calculate modulo?
Thanks.
HI
If I am not mistaken, currently we don’t have any option to use Modulo operator in A360. But you can still get it worked by following either of the following method.
or
or
https://botstore.automationanywhere.com/bot/calculator-package
For simplicity though, I would agree with
Thank you both!
simple: use this mathematical formula
a = 10, b = 3, quotient, remainder;
quotient = a / b; // quotient is 3
remainder = a - (quotient * b); // remainder is 1
Simply use the Boolean “to String action”, by dividing the number with 2.
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.