View Single Post
  #4   Report Post  
Posted to microsoft.public.excel.programming
Dave Peterson Dave Peterson is offline
external usenet poster
 
Posts: 35,218
Default Insert Concatenate Formula

Yeah, but...

Do you really want to see "B1" and "A1" in the results or do you want to see the
stuff in cells A1 and B1?

=concatenate("https://websiteaddress,"A1",moreurldetail, "B1")

=hyperlink("https://websiteaddress/" & $a$1 & "moreurldetail" & $b$1)

I'm guessing that you want what's in the cells:

ActiveCell.Formula _
= "=hyperlink(""https://websiteaddress/"" & $a$1 & ""moreurldetail"" & $b$1)"

(I like to use the & operator instead of the =concatenate() function. I find it
easier to read.)



"DARREN FONG via OfficeKB.com" wrote:

Amber,

Im trying to open a single https page by hyperlinking in using the
concatenate funtion

Amber_D_Laws wrote:
What exactly are you trying to accomplish with the formula?
I ask, because as a beginner I have often thought I knew what I needed
and in the end it turned out I was completely wrong.
Whereas, I don't have an answer, maybe if one of the others that reall
*knows* what they are doing knows what your are trying to accomplis
they might be able to steer you better.

Just a thought. :


--
Message posted via OfficeKB.com
http://www.officekb.com/Uwe/Forums.a...mming/200512/1


--

Dave Peterson