Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hi all,
I have an imported file that contains a list of names which have links to e-mail addresses. The names are blue in colour and the address shows when the mouse hovers over the name. How can I extract the e-mail address and for example, place it in another column ? Thank you and regards, Don .. |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Dim cell as Range
for each cell in selection if cell.Hyperlinks.count 1 then cell.offset(0,1).Value = cell.hyperlinks(1).Address end if Next -- Regards, Tom Ogilvy "Don Lloyd" wrote in message ... Hi all, I have an imported file that contains a list of names which have links to e-mail addresses. The names are blue in colour and the address shows when the mouse hovers over the name. How can I extract the e-mail address and for example, place it in another column ? Thank you and regards, Don . |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hi Tom,
Both the timing and the content are brilliant. regards, Don "Tom Ogilvy" wrote in message ... Dim cell as Range for each cell in selection if cell.Hyperlinks.count 1 then cell.offset(0,1).Value = cell.hyperlinks(1).Address end if Next -- Regards, Tom Ogilvy "Don Lloyd" wrote in message ... Hi all, I have an imported file that contains a list of names which have links to e-mail addresses. The names are blue in colour and the address shows when the mouse hovers over the name. How can I extract the e-mail address and for example, place it in another column ? Thank you and regards, Don . |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
email links open outlook, I want yahoo mail, how do I change setti | Excel Discussion (Misc queries) | |||
Chart links with mail merge | Excel Discussion (Misc queries) | |||
How do I sort e-mail addresses without losing the links? | Excel Discussion (Misc queries) | |||
Can I e-mail a workbook that contains links to other workbooks? | Excel Discussion (Misc queries) | |||
Error: cannot load the mail service. Check your mail installation. | Excel Discussion (Misc queries) |