command?

  • Thread starter Thread starter Don B
  • Start date Start date
D

Don B

I am fairly new at using Excel, and am having a problem finding a
command, if there is one, to just select the last two digits of a number
and use it in a formula then paste in back on the end of the original
number. I am using Excel 2000.

example:

422733 take the last two digits and divide them by 60 and end up with a
final number 4227.55

Thanks, Don
 
Hi Don

422733\100 + (422733 mod 100)/60

--

HTH

RP
(remove nothere from the email address if mailing direct)
 
Hi Don,

There must be smarter ways, but here's one:

=INT(A1/100)+(A1-(INT(A1/100)*100))/60

--

Kind Regards,

Niek Otten

Microsoft MVP - Excel
 

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

Back
Top