Convert a Fixed type variable into an ASCII string in decimal format.
Syntax: strFixed(value, frac, string)
| value | Required. Value to convert |
| frac |
Required. The number of decimal places to display Valid from 1 to 4 |
| string | Required. The string to place the converted number in |
Example:
strFixed(12.125,1,s) ' s="12.1" strFixed(12.125,2,s) ' s="12.12" strFixed(12.125,3,s) ' s="12.125"