D
djf
How can I only show the decimal part of a number? For example, if I have
1.234 I want to extract and show .234
1.234 I want to extract and show .234
E.g.How can I only show the decimal part of a number? For example, if I have
1.234 I want to extract and show .234
Klatuu said:x = 1.234
= Format(X-Int(X),"#.####")
Note I have 4 # following the decimal. That is so you can get the precision
you want without following zeros.