how can i extract part of a string

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I have a field which consists of some thing like "R1113L Fuse part23 dxl" , I
want only the first part, so whatever after the first space, i want to trim
it off. Is there a way to run an update query to do it?

Thanks...
 
Try and use the spit function, the 0 specify for the first location.

=split("R1113L Fuse part23 dxl", " ")(0)
 
Assuming there is always a space in your string, create an update query with
the field (I have called it Partcode) as the only column. In the Update To:
row put this

Left([PartCode],InStr(1,[PartCode]," ",0)-1)
 
Thank you so much, this really helps.
--
someone in trouble


Dennis said:
Assuming there is always a space in your string, create an update query with
the field (I have called it Partcode) as the only column. In the Update To:
row put this

Left([PartCode],InStr(1,[PartCode]," ",0)-1)

basara said:
I have a field which consists of some thing like "R1113L Fuse part23 dxl" , I
want only the first part, so whatever after the first space, i want to trim
it off. Is there a way to run an update query to do it?

Thanks...
 
This worked great for me but had to add a comma between " ". Query runs
fine, but when I drop this field into my header, I am getting a Invalid
procedure call.

Dennis said:
Assuming there is always a space in your string, create an update query with
the field (I have called it Partcode) as the only column. In the Update To:
row put this

Left([PartCode],InStr(1,[PartCode]," ",0)-1)

basara said:
I have a field which consists of some thing like "R1113L Fuse part23 dxl" , I
want only the first part, so whatever after the first space, i want to trim
it off. Is there a way to run an update query to do it?

Thanks...
 
Thanks a Million! You saved me hours on a job I had to do because of this
information
- Jen Gravers

Dennis said:
Assuming there is always a space in your string, create an update query with
the field (I have called it Partcode) as the only column. In the Update To:
row put this

Left([PartCode],InStr(1,[PartCode]," ",0)-1)

basara said:
I have a field which consists of some thing like "R1113L Fuse part23 dxl" , I
want only the first part, so whatever after the first space, i want to trim
it off. Is there a way to run an update query to do it?

Thanks...
 

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

Back
Top