> hi there...what function shall i use if i want to return a numeric data upto two decimal places only without rounding it off...for example i have 6.778, i want to return only 6.77
x = 6.778
ALINES(oArr,TRANSFORM(x),1,".")
?VAL(oArr(1) + "." + LEFT(oArr(2),2))