string question

  • Thread starter Thread starter Victoria
  • Start date Start date
V

Victoria

let's say i have a textbox holding the value 12ah6/6SQ61. I need a function
that will output the string before the /, and another that outputs the string
after the /. How do i do this?

thanks in advance
Victoria
 
let's say i have a textbox holding the value 12ah6/6SQ61. I need a function
that will output the string before the /, and another that outputs the string
after the /. How do i do this?

thanks in advance
Victoria

Before = Left([Fieldname],InStr([FieldName],"/")-1)
After = Mid([Fieldname],InStr([FieldName],"/")+1)
 

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

Similar Threads

DLookup Challenge 11
Creating a string based on a query 1
"Too Few Parameters. Expected 1." 1
Error: Argument Not Optional 0
return string 6
Testing a value using a validation string 1
Filter 4
Uploading a Picture 1

Back
Top