Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Is there a way to convert "96x32x41" in one cell, from "in" to "ft" and
display the result in the next cell???? Thanks!!! |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
what you have in the column- 96"x42"x31" is a text string. You need to be
able to pick out the number parts, convert to values, divide by 12 to get feet, convert back to text to display in the next cell. The hard part in all that is picking out the numbers. If they are all always 2 digits, then it's easy, the are always in the same place and you can use the =MID() function to pick them out. If they are different, you need VB code to go through and parse it. "Ryan''s Girl" wrote: Is there a way to convert "96x32x41" in one cell, from "in" to "ft" and display the result in the next cell???? Thanks!!! |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Try
=INT((6*32*41)/12)& " Feet " & MOD((6*32*41),12)&" Inches" Mike "Ryan''s Girl" wrote: Is there a way to convert "96x32x41" in one cell, from "in" to "ft" and display the result in the next cell???? Thanks!!! |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Finding a value quickly using VBA | Excel Discussion (Misc queries) | |||
please help (need quickly) | Excel Discussion (Misc queries) | |||
need help quickly!! | Excel Discussion (Misc queries) | |||
Need help, quickly please | Setting up and Configuration of Excel | |||
i cant get the exact answer e.g answer is 13.49% i got 13.00% | Excel Discussion (Misc queries) |