Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
I am new to the forum, so some help would be appreciated.
I have data in the form of 132 ' 30 which represents 132 30/32. If someone could show me how to convert into the /32, I would appreciate it.,. Thanks AU |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
=LEFT(A1,FIND("'",A1)-2)+RIGHT(A1,LEN(A1)-FIND("'",A1)-1)/32
-- David Biddulph "aupeter" <u50243@uwe wrote in message news:92dd458bb78f2@uwe... I am new to the forum, so some help would be appreciated. I have data in the form of 132 ' 30 which represents 132 30/32. If someone could show me how to convert into the /32, I would appreciate it.,. Thanks AU |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Hi Aupeter,
Assuming that you have this data in Cell A1, use the following formula:- =MID(A1,1,FIND("'",A1)-2)&""&RIGHT(A1,(LEN(A1)-FIND("'",A1)))&""&"/32" Please click on "yes" if it helps..Thanks. -- Dilip Kumar Pandey MBA, BCA, B.Com(Hons.) New Delhi, India "aupeter" wrote: I am new to the forum, so some help would be appreciated. I have data in the form of 132 ' 30 which represents 132 30/32. If someone could show me how to convert into the /32, I would appreciate it.,. Thanks AU |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Change number (in text format) to numeric format | Excel Discussion (Misc queries) | |||
Hoe to change text format .126 to number format 0.126 | Excel Discussion (Misc queries) | |||
How to change text format .126 to number format 0.126 ? | Excel Worksheet Functions | |||
why does currency format change to number format? | Excel Discussion (Misc queries) | |||
How do i change numbers in text format to number format? | New Users to Excel |