In a formula, if you multiply a value by a negative number, the answer is always the negative number you used.
$value= (20 * -10);
output\printLine($value);
Returns -10;
$value= (20 * -1);
output\printLine($value);
Returns -1;
Do other people get this too? Confirm it in the Formula Sandbox.
Version 8.2.2
$value= (20 * -10);
output\printLine($value);
Returns -10;
$value= (20 * -1);
output\printLine($value);
Returns -1;
Do other people get this too? Confirm it in the Formula Sandbox.
Version 8.2.2
Comment