Page History
...
The NONE operation returns Value without performing any calculations. This operation is useful if you wish to format a number without changing it. For example, you could use it to convert a number into scientific notation.
Example
| Code Block |
|---|
// Format the 3/6/08 national debt into scientific notation
Val = "9382669724008.03"
Result = SRP_Math("NONE", Val, "", -1, 1)
!! Result = 9.38266972400803E+12 !! |
...
| Code Block |
|---|
// Now, convert it back to fixed point format
Result = SRP_Math("NONE", Result)
!! Result = 9382669724008.03 !! |
...