This should give you what you want, convert the number to a string and then step through each character and add the space.
Code:
local NumberVar i;
local StringVar strValue := cstr({MyField},0,'');
local stringvar strTemp;
For i := 1 to Len(strValue)
Do(
strTemp := strTemp & strValue[i] & ' ');
Left(strTemp,Len(strTemp) -1)
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.