Deriving Website from Email Addresses
Ever look at a lead record and want to know more about it. Your first instinct might be to visit the Lead’s website. Don’t you hate it when the website field is blank but the email isn’t. You have to copy the domain from the email address and then paste it into your browser. That’s a minimum of 4 clicks and keystrokes. What a waste of time!
Wouldn’t it be great, if you could automatically populate the website field based on email address? This solution is so simple that you’re going to hit yourself for not implementing it sooner.
1. Create a new Workflow Rule on Leads with the following filters:
Email contains @
Website equals [leaving the value blank]
2. Add a Workflow Field Update that updates the Website field with this formula:
“www.”& RIGHT(Email, LEN(Email)- FIND(“@”, Email ) )
3. Activate and enjoy!
You can also use this same formula to create a Custom Link for this purpose. You can also optionally filter out common domains like gmail if you want to.
Related posts:



May 19th, 2009 at 7:00 pm
Brilliant! Thanks so much for sharing this.
May 24th, 2009 at 1:24 pm
Nice tip. I just implemented it.
June 1st, 2009 at 10:30 am
Awesome! just an fyi I don’t know if others had this problem but the quotes didn’t work, I had to delete each quote and retype it. Maybe because of the smart quote character set?