my linked database has an email fields that shows data as joe@gmail.com#m ailto:joe@gmail .com#. I want to strip the #...# so new field is joe@gmail.com. i am a access novice and need help
thanks
Andy
thanks
Andy
SELECT tblEMail.Address, Replace(Mid$([Address],InStrRev([Address],":")+1),"#","") AS EMail FROM tblEMail;
Address ANewmann@MAD.com#mailto:ANew@gmail.com# BGates@Microsoft.com#mailto:BillGates@Yahoo.com# Fred@Flintstone.org#mailto:FFlintstone@Verizon.net#
Address EMail ANewmann@MAD.com#mailto:ANew@gmail.com# ANew@gmail.com BGates@Microsoft.com#mailto:BillGates@Yahoo.com# BillGates@Yahoo.com Fred@Flintstone.org#mailto:FFlintstone@Verizon.net# FFlintstone@Verizon.net
Comment