USING TEXT AND NUMBERS IN SAME CELL

M

Model-man

Hi
I am trying to type in something like 21lb 8oz but also use the decimal
version 21.5 in the same cell as a number,so i can use =sum. I do not need to
see the number 21.5, in fact it would be prefferable not to.

Can anyone help.
 
G

Gary''s Student

Since you want to do math on the number and still see it in logical units,
consider using two cells:


In A1 put 21.5
in B1 put =INT(A1)&" lbs " & 16*(A1-INT(A1))&" oz"
and you will see what you want.
_______________________________________________________
Gary's Student
 
M

Model-man

Hi
Thanks for that.

Greg

Gary''s Student said:
Since you want to do math on the number and still see it in logical units,
consider using two cells:


In A1 put 21.5
in B1 put =INT(A1)&" lbs " & 16*(A1-INT(A1))&" oz"
and you will see what you want.
_______________________________________________________
Gary's Student
 

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