C
Corentin Cras-Méneur
Hi All,
I had a question that puzzled me for a while and I was wondering
wether anyone in the newsgroup had any idea about this: I've had to
generate and transfrom a lot of Excel pages lately. I had long lists of
numbers that I needed to transform into active hyperlinks (constructed
from these numbers).
The *dirty* way that I used was to get the list in BBEdit and use
regular expressions to transform the list into properly formatted html
links
find:
^(\d+)
replace with:
<a
href="http://www.ncbi.nlm.nih.gov/LocusLink/LocRpt.cgi?l=\1">\1</a><br>
and paste the list between html headers. The resulting html file can be
opened in Excel allowing me to copy and paste the list of links to any
spreadsheet.
Is there a more elegant way to do this directly in Excel ??? I can
easely transfor the list of numbers into the proper http link but the
cell is not an active link. Pressing command-k on the cells clearly
shows the link is used for "display" but not for the link itself.
Is there an easy way to transform all these http links into active links
in the srpeadsheet???
Thanks,
Corentin
I had a question that puzzled me for a while and I was wondering
wether anyone in the newsgroup had any idea about this: I've had to
generate and transfrom a lot of Excel pages lately. I had long lists of
numbers that I needed to transform into active hyperlinks (constructed
from these numbers).
The *dirty* way that I used was to get the list in BBEdit and use
regular expressions to transform the list into properly formatted html
links
find:
^(\d+)
replace with:
<a
href="http://www.ncbi.nlm.nih.gov/LocusLink/LocRpt.cgi?l=\1">\1</a><br>
and paste the list between html headers. The resulting html file can be
opened in Excel allowing me to copy and paste the list of links to any
spreadsheet.
Is there a more elegant way to do this directly in Excel ??? I can
easely transfor the list of numbers into the proper http link but the
cell is not an active link. Pressing command-k on the cells clearly
shows the link is used for "display" but not for the link itself.
Is there an easy way to transform all these http links into active links
in the srpeadsheet???
Thanks,
Corentin