Rounding Numbers

G

Guest

I need to "lop off" a fractional number -- but not round it. Kind of like
truncating only not to an integar -- keeping to 100th decimal place.

1.6595959 would be 1.65

Is that the same as rounding down? I guess I'll try that next -- unless
someone else has another idea?
 
B

Bruno Campanini

KHinMN said:
I need to "lop off" a fractional number -- but not round it. Kind of like
truncating only not to an integar -- keeping to 100th decimal place.

1.6595959 would be 1.65

Is that the same as rounding down? I guess I'll try that next -- unless
someone else has another idea?

TRUNC(1.6595959, 2) = 1.65

Ciao
Bruno
 
L

L. Howard Kittle

Hi KHinMN

See if this gets you there.

=LEFT(A1,FIND(".",A1)+2)*1

HTH
Regards,
Howard
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top