Splitting formfield text

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

Guest

Can anybody assist me with splitting was would be the result of a form field,
so I can populate three fields instead of the one froma string of text

For example if this was the populated field XXXXXOOOOOOYYYYY

So I could put 3 fields instead and the result when populated is XXXXX
OOOOOO YYYYY

By doing something like left 5 mid 6 right 5


Thanks in advance
 
You pretty much answered this one yourself-

strvar = Textbox1

Textbox2= left(strval, 5)

Textbox3= mid(strval, 6, 6)

Textbox4= right(strval, 5)

Cheers,
Al
 

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