Hi,

Is there a function for cutting off a number at a specified number of decimals, rather than rounding it?

If my number is:

x = 12.6549

How can I return it to only 2,3 or whatever specified number of decimal places, like 12.6?

Fix(x) only returns the integer part.

Thanks for any help!