A real easy one I think??*12809

  • Thread starter Thread starter Earl.AKA J.Alladien in access forum!!
  • Start date Start date
E

Earl.AKA J.Alladien in access forum!!

Hi all ,

I have following e-mail adresses in my table as follows:

E-mail: (e-mail address removed)
E-mail: (e-mail address removed)
E-mail: (e-mail address removed)

and I would like them to display like:

(e-mail address removed)
(e-mail address removed)
(e-mail address removed)

Without the "E-mail:"

Thanks in advance!!!
 
Display where? In a report?

If the text "E-mail: " doesn't belong, why not just strip it out with an UPDATE query?

For a report, you can dynamically strip it by using one of these functions ...

ControlSource of text box = Replace(,"E-mail: ","")
or
ControlSource of text box = Mid([Email], 9)
 
That did it,

Thanks Danny!



Danny Lesandrini said:
Display where? In a report?

If the text "E-mail: " doesn't belong, why not just strip it out with an UPDATE query?

For a report, you can dynamically strip it by using one of these functions ...

ControlSource of text box = Replace((e-mail address removed)
 
Surely when using mid, you have to take into account the variation in the
length of various e mail addresses as in?

Mid((e-mail address removed)
 
MikeJohnB said:
Surely when using mid, you have to take into account the variation in
the
length of various e mail addresses as in?

Mid((e-mail address removed)
 
Ahhhh, I see said the Blind Man

Thanks
--
Advice to Posters.
Check your post for replies or request for more information.
Consider providing some feed back to the response you have recieved.
Kindest Regards Mike B


Clif McIrvin said:
MikeJohnB said:
Surely when using mid, you have to take into account the variation in
the
length of various e mail addresses as in?

Mid((e-mail address removed)
 

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