Hi,
I am performing some basic arithmetic operations on numerical values.
For example,
Local NumberVar UL := ToNumber ({?UpperLimit});
//taking a user entered parameter and making it a numerical variable
UL := UL * 1.05;
// I want to get a value that is 105% of the parameter. I am passing this on to some chart macros
The problem that I am having is that a number like 6000 is fine and dandy, but as soon as I perform a math operation on it, it becomes 6,300 instead of 6300.
How can I get an result of 6300, or failing that, what code do I use to remove commas from a numeric variable?