Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Dear Expert,
Want to extract 3 letters after /, in this case, the answer should be JPY. EUR/JPY SHORT EUR 20 MIO AUD/JPY SHORT AUD 1 MIO USD/JPY SHORT USD 1 MIO Can ? Thanks Elton |
#2
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
=MID(A2,FIND("/",A2)+1,3)
-- David Biddulph "Elton Law" wrote in message ... Dear Expert, Want to extract 3 letters after /, in this case, the answer should be JPY. EUR/JPY SHORT EUR 20 MIO AUD/JPY SHORT AUD 1 MIO USD/JPY SHORT USD 1 MIO Can ? Thanks Elton |
#3
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Hi David,
If this time, I want to capture the 3 letters in front of mio please ?' EUR/JPY SHORT EUR 20 MIO AUD/JPY SHORT AUD 1 MIO USD/JPY SHORT USD 1 MIO In this case, it should be 20, 1, 1 in each each. Thanks Elton "David Biddulph" wrote: =MID(A2,FIND("/",A2)+1,3) -- David Biddulph "Elton Law" wrote in message ... Dear Expert, Want to extract 3 letters after /, in this case, the answer should be JPY. EUR/JPY SHORT EUR 20 MIO AUD/JPY SHORT AUD 1 MIO USD/JPY SHORT USD 1 MIO Can ? Thanks Elton |
#4
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Hi,
Try this =1*MID(C11,MIN(SEARCH({0,1,2,3,4,5,6,7,8,9},C11&"0 123456789")),SEARCH(" ",C11,MIN(SEARCH({0,1,2,3,4,5,6,7,8,9},C11&"012345 6789")))-MIN(SEARCH({0,1,2,3,4,5,6,7,8,9},C11&"0123456789") )) -- Regards, Ashish Mathur Microsoft Excel MVP www.ashishmathur.com "Elton Law" wrote in message ... Hi David, If this time, I want to capture the 3 letters in front of mio please ?' EUR/JPY SHORT EUR 20 MIO AUD/JPY SHORT AUD 1 MIO USD/JPY SHORT USD 1 MIO In this case, it should be 20, 1, 1 in each each. Thanks Elton "David Biddulph" wrote: =MID(A2,FIND("/",A2)+1,3) -- David Biddulph "Elton Law" wrote in message ... Dear Expert, Want to extract 3 letters after /, in this case, the answer should be JPY. EUR/JPY SHORT EUR 20 MIO AUD/JPY SHORT AUD 1 MIO USD/JPY SHORT USD 1 MIO Can ? Thanks Elton |
#5
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Try this:
=--TRIM(MID(SUBSTITUTE(A1," ",REPT(" ",99)),277,99)) copy down "Elton Law" wrote: Hi David, If this time, I want to capture the 3 letters in front of mio please ?' EUR/JPY SHORT EUR 20 MIO AUD/JPY SHORT AUD 1 MIO USD/JPY SHORT USD 1 MIO In this case, it should be 20, 1, 1 in each each. Thanks Elton "David Biddulph" wrote: =MID(A2,FIND("/",A2)+1,3) -- David Biddulph "Elton Law" wrote in message ... Dear Expert, Want to extract 3 letters after /, in this case, the answer should be JPY. EUR/JPY SHORT EUR 20 MIO AUD/JPY SHORT AUD 1 MIO USD/JPY SHORT USD 1 MIO Can ? Thanks Elton |
#6
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
=MID(A1,FIND("MIO",A1)-3,3)
Elton Law wrote: Hi David, If this time, I want to capture the 3 letters in front of mio please ?' EUR/JPY SHORT EUR 20 MIO AUD/JPY SHORT AUD 1 MIO USD/JPY SHORT USD 1 MIO In this case, it should be 20, 1, 1 in each each. Thanks Elton "David Biddulph" wrote: =MID(A2,FIND("/",A2)+1,3) -- David Biddulph "Elton Law" wrote in message ... Dear Expert, Want to extract 3 letters after /, in this case, the answer should be JPY. EUR/JPY SHORT EUR 20 MIO AUD/JPY SHORT AUD 1 MIO USD/JPY SHORT USD 1 MIO Can ? Thanks Elton |
#7
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Your formula returns incorrect value with this example
EUR/JPY SHORT EUR 20000 MIO =MID(A1,FIND("MIO",A1)-3,3) "Glenn" wrote: =MID(A1,FIND("MIO",A1)-3,3) Elton Law wrote: Hi David, If this time, I want to capture the 3 letters in front of mio please ?' EUR/JPY SHORT EUR 20 MIO AUD/JPY SHORT AUD 1 MIO USD/JPY SHORT USD 1 MIO In this case, it should be 20, 1, 1 in each each. Thanks Elton "David Biddulph" wrote: =MID(A2,FIND("/",A2)+1,3) -- David Biddulph "Elton Law" wrote in message ... Dear Expert, Want to extract 3 letters after /, in this case, the answer should be JPY. EUR/JPY SHORT EUR 20 MIO AUD/JPY SHORT AUD 1 MIO USD/JPY SHORT USD 1 MIO Can ? Thanks Elton |
#8
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
It doesn't "capture the 3 letters in front of mio"?
(Where I took "letters" to mean "characters") Teethless mama wrote: Your formula returns incorrect value with this example EUR/JPY SHORT EUR 20000 MIO =MID(A1,FIND("MIO",A1)-3,3) "Glenn" wrote: =MID(A1,FIND("MIO",A1)-3,3) Elton Law wrote: Hi David, If this time, I want to capture the 3 letters in front of mio please ?' EUR/JPY SHORT EUR 20 MIO AUD/JPY SHORT AUD 1 MIO USD/JPY SHORT USD 1 MIO In this case, it should be 20, 1, 1 in each each. Thanks Elton "David Biddulph" wrote: =MID(A2,FIND("/",A2)+1,3) -- David Biddulph "Elton Law" wrote in message ... Dear Expert, Want to extract 3 letters after /, in this case, the answer should be JPY. EUR/JPY SHORT EUR 20 MIO AUD/JPY SHORT AUD 1 MIO USD/JPY SHORT USD 1 MIO Can ? Thanks Elton |
#9
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
tks all ... all are super stars !
"Teethless mama" wrote: Your formula returns incorrect value with this example EUR/JPY SHORT EUR 20000 MIO =MID(A1,FIND("MIO",A1)-3,3) "Glenn" wrote: =MID(A1,FIND("MIO",A1)-3,3) Elton Law wrote: Hi David, If this time, I want to capture the 3 letters in front of mio please ?' EUR/JPY SHORT EUR 20 MIO AUD/JPY SHORT AUD 1 MIO USD/JPY SHORT USD 1 MIO In this case, it should be 20, 1, 1 in each each. Thanks Elton "David Biddulph" wrote: =MID(A2,FIND("/",A2)+1,3) -- David Biddulph "Elton Law" wrote in message ... Dear Expert, Want to extract 3 letters after /, in this case, the answer should be JPY. EUR/JPY SHORT EUR 20 MIO AUD/JPY SHORT AUD 1 MIO USD/JPY SHORT USD 1 MIO Can ? Thanks Elton |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
My filter does not pick up all text | Excel Discussion (Misc queries) | |||
Formula to Pick Out Characters within a Text String | Excel Worksheet Functions | |||
pick from 'drop down list' OR enter text in cell | Excel Worksheet Functions | |||
Pick list or freeform text | Excel Discussion (Misc queries) | |||
Create a pick list to use to go to a text cell in Excel | Excel Worksheet Functions |