On Thu, 13 Mar 2008 18:57:31 -0000, "lakeshoresurfer" <[EMAIL PROTECTED]> wrote:
>a = v[0]+v[2] >s = v[0]-v[2] PowerPro doesn't automatically convert string to float or float to string. You have to do it explicitly. For floating math instead of integer math, at least one of the arguments must be float. I don't know if PowerPro respects the Regional settings for the Decimal symbol, it may always use the US symbol ".". If you use a "," for the Decimal symbol then you may have to replace "," with "." for input and replace "." with "," on output. Try a = (v[0].tofloat+v[2].tofloat).ftos s = (v[0].tofloat-v[2].tofloat).ftos -- Carroll Robbins
