![]() |
extract text
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 |
extract text
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 |
extract text
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 |
extract text
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 |
All times are GMT +1. The time now is 02:57 AM. |
Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
ExcelBanter.com