Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
if i have different text strings, but in all of them there will by a dollar amount
example: aif2ffsdfij$39.99&3kgjcis o qe141$29.99.cw.e.331 how would i go about extracting the formul |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hi
and what do you exactly want to extract. The dollar amount? -- Regards Frank Kabel Frankfurt, Germany "choice" schrieb im Newsbeitrag ... if i have different text strings, but in all of them there will by a dollar amount. example: aif2ffsdfij$39.99&3kgjcism or qe141$29.99.cw.e.3312 how would i go about extracting the formula |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Do you mean the amount?
=MID(A1,FIND("$",A1),FIND(".",A1)+2-FIND("$",A1)+1) -- HTH Bob Phillips ... looking out across Poole Harbour to the Purbecks (remove nothere from the email address if mailing direct) "choice" wrote in message ... if i have different text strings, but in all of them there will by a dollar amount. example: aif2ffsdfij$39.99&3kgjcism or qe141$29.99.cw.e.3312 how would i go about extracting the formula |
#4
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Are you looking for something like this?
Sub test() MsgBox cash$("aif2ffsdfij$39.99&3kgjcism") MsgBox cash$("qe141$29.99.cw.e.3312") End Sub Function cash$(s$) Dim pos1%, pos2% pos1% = InStr(1, s$, "$") pos2% = InStr(pos1%, s$, ".") cash$ = Mid$(s$, pos1%, pos2% + 3 - pos1%) End Function choice wrote: if i have different text strings, but in all of them there will by a dollar amount. example: aif2ffsdfij$39.99&3kgjcism or qe141$29.99.cw.e.3312 how would i go about extracting the formula |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
refer a cell text in b1 and extract remaing text from a1 | Excel Discussion (Misc queries) | |||
How to extract text from number/text cell | Excel Worksheet Functions | |||
Need to extract certain text from text string | Excel Worksheet Functions | |||
Extract text from large Text | Excel Discussion (Misc queries) | |||
EXTRACT TEXT FROM TEXT STRING | Excel Worksheet Functions |