I have a number variable called NumValue. I want to add a decimal point to the end of the number. I've tried the following:
Add "." to NumValue
Set NumValue to NumValue & "." (BTW, this works for numbers)
Set NumValue to NumValue + "."
None of these worked. Any help would be greatly appreciated.