.CSV Email issue

Helix242

Board Regular
Joined
Jun 28, 2016
Messages
78
Morning all,

I have a .CSV with contact information and in column E is the email address. The source of the emails (another Workbook) shows them as a none active link - i.e. if you click the email, or hold Alt and click nothing happens. So when these are copied over they are still a none active email and when importing them in to Outlook they are not recognised as an actual email.

I have tried:

Code:
=E1&";"

but this does not work. The only think I have found that does work is to click in to the cell with the email and press return, which then makes it an active email link, however there are over 1,000 of them so this just isn't an option. :eek:

Can anyone provide assistance as to what may work?

Many thanks in advance.
 

Excel Facts

Will the fill handle fill 1, 2, 3?
Yes! Type 1 in a cell. Hold down Ctrl while you drag the fill handle.
How about using the Hyperlink function along with 'mailto:':

Code:
=HYPERLINK("mailto:"&E1)
 
Upvote 0
How about using the Hyperlink function along with 'mailto:':

Code:
=HYPERLINK("mailto:"&E1)

Thank you for this. It does create an active email, and then I can copy and Special Paste to keep the hyperlink, however as the email then reads mailto:me@me.com Outlook does not recognise this as an active email.

Is there any way to keep the active email but without the mailto: ?

Thank you
 
Upvote 0
You could try adding in a friendly name -
Code:
=HYPERLINK("mailto:"&E1,E1)

Hi,

Thank you again. When I enter this, it does create an active email. However when re-opening the .CSV file it removed the code and just replaces it with the email address, which is again inactive. I presume this is something to do with saving a .CSV file. Do you know if there is a way to allow the email to remain active when saving the .CSV file?

I thought importing this file to Outlook would be straight forward, but it does not appear to be.

Any help would be appreciated.

Thank you
 
Upvote 0
You could try adding in a friendly name -
Code:
=HYPERLINK("mailto:"&E1,E1)

Hi,

Apologies!! The original file works fine. It was the way the email was being mapped when importing the file. By manually mapping the email the issue has now been resolved. Thank you for your help though, it is much appreciated! Every day is a school day!

Many thanks
 
Upvote 0

Forum statistics

Threads
1,214,601
Messages
6,120,465
Members
448,965
Latest member
grijken

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top