Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Does anyone have any suggestions how to select the value?
I would like to retrieve the value within (), such as 2.532 (2.7%) in cell A1 It should return 2.7% in cell B1. Does anyone have any suggestions? Thank you very much Eric |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Try one of these:
If the number inside the ( ) is *always* positive: =-MID(A1,FIND("(",A1),100) Or, this generic version: =--MID(SUBSTITUTE(A1,")",""),FIND("(",A1)+1,100) Format as PERCENTAGE -- Biff Microsoft Excel MVP "Eric" wrote in message ... Does anyone have any suggestions how to select the value? I would like to retrieve the value within (), such as 2.532 (2.7%) in cell A1 It should return 2.7% in cell B1. Does anyone have any suggestions? Thank you very much Eric |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
In B1, B1 formatted as percentage:
=MID(A1,SEARCH("(",A1)+1,SEARCH(")",A1)-SEARCH("(",A1)-1)+0 -- Max Singapore http://savefile.com/projects/236895 xdemechanik --- "Eric" wrote: Does anyone have any suggestions how to select the value? I would like to retrieve the value within (), such as 2.532 (2.7%) in cell A1 It should return 2.7% in cell B1. Does anyone have any suggestions? Thank you very much Eric |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Using formulas to select cells (Ex: Select every nth cell in a col | Excel Discussion (Misc queries) | |||
how to randomly select a name in a list and then the select the ne | Excel Worksheet Functions | |||
how do you "select locked cells" w/o "select unlocked cells"? | Excel Discussion (Misc queries) | |||
In Excel 2000, How do you select the whole of a worksheet (Select. | Excel Discussion (Misc queries) | |||
In Excel 2000, How do you select the whole of a worksheet (Select. | Excel Discussion (Misc queries) |