Here's a few simple commands with their outputs:
Hopefully it is obvious that the output of the second to last command is not what I would expect. Does the open parenthesis have anything to do with it?
Code:
[Z:\Work]Echo "%Description"
"abc def ("
[Z:\Work]Echo "%Amount"
"124.45)"
[Z:\Work]Echo Iff %@Right[1,%Description] %@Right[1,%Amount]
Iff ( %@Right[1,%Amount]
[Z:\Work]Echo Iff %@Right[1,%Amount]
Iff )
Hopefully it is obvious that the output of the second to last command is not what I would expect. Does the open parenthesis have anything to do with it?