Mar 15, 2006 #1 see123 Programmer Joined May 11, 2001 Messages 28 Location US I have field in DB as number X = .6250. I need to display this filed as 0000000.6250 Used a formula to convert this filed to fixed length ToText(X,"0000000.0000",2,"",".") But this number is rounded to 000000.6300 any ideas please
I have field in DB as number X = .6250. I need to display this filed as 0000000.6250 Used a formula to convert this filed to fixed length ToText(X,"0000000.0000",2,"",".") But this number is rounded to 000000.6300 any ideas please
Mar 15, 2006 1 #2 synapsevampire Programmer Joined Mar 23, 2002 Messages 20,180 Location US The 2 is stating 2 decimal places, change it to 4, as in: ToText(X,"0000000.0000",4,"",".") -k Upvote 0 Downvote