Minus variable name does work but it gets weird with the order of operations when a multiply comes just before it.
[code]
variable1 * -variable2
[/code]
Will totally flake out, so do this instead:
[code]
-variable2 * variable1
[/code]
Oops, or just read Calin's reply that I somehow missed.