Hyperlink from plain text.

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I am importing an Access Query into a sheet of my Excel file. This query has
a column that is all hyperlinks. My problem is that instead of importing as
a hyperlink, it comes into Excel as plain text. I have used HYPERLINK(A1) to
try to convert, but there is a number sign (#) at the start of the plain
text. Is there a way I can delete this first character, then use
HYPERLINK(A1) to get my hyperlink into a column that is unaffected by data
updates?
I am using Access and Excel 2002, and I am pretty new to all this, I am
currently trying to wrap my brain around macros to see if I can find a
solution there, but that is confusing me more I think.

I will be grateful for any help.

Lori.
 
How about just skipping the first character in your =hyperlink() formula:

=hyperlink(mid(a1,2,255))

(make that 255 large enough for any of your hyperlinks.)

===
Or if the # sign only appears in the first character in those strings, you
could:

Edit|Replace
what: #
with: (leave blank)
replace all
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads


Back
Top