Selecting part of a filed

  • Thread starter CharlesCount via AccessMonster.com
  • Start date
C

CharlesCount via AccessMonster.com

I have table with a field like this one and I need to separate the dollar
amount out, the amoount can range from 3 digit to 6 digit or more.
XY4567 Converter belt $3.40 or 7890 Transmission $1250.00, I need to develope
a query to extract the dollar amounts or cost

Thank you
 
M

Michel Walsh

val( Mid(fieldName, 1+InStr(fieldName & "$" , "$")))



Hoping it may help,
Vanderghast, Access MVP
 
C

CharlesCount via AccessMonster.com

Michel said:
val( Mid(fieldName, 1+InStr(fieldName & "$" , "$")))

Hoping it may help,
Vanderghast, Access MVP
I have table with a field like this one and I need to separate the dollar
amount out, the amoount can range from 3 digit to 6 digit or more.
[quoted text clipped - 3 lines]
Thank you

Thank you so much

Life can be so simple when you know what to do

Charles
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top