Thread: Find $
View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.misc
Mike H Mike H is offline
external usenet poster
 
Posts: 11,501
Default Find $

Hi,

This may be more complicated than necessary because it also find the cents
if they are included

=MID(A1,FIND("$",A1),FIND(" ",A1,FIND("$",A1))-FIND("$",A1))

If you just want to find the dollars as in your example use the simpler

=MID(A1,FIND("$",A1),3)

Mike

"Max" wrote:

I have data that starts with $ which is easy to find.

But sometime the $ is blended in the text

please note this data is in Access??? But if I have to move it to excel ok...

Hello-$10.00 SPEC COPAY
Hello - $30.00 SPEC COPAY
VARIOUS COPAYS,INCL. $10 SPEC
Hello $20 SPEC COPAY / $0 FOR KIDS

How can I pick in a new column as follow
$10
$30
$10
$20

Thanks