Reputation: 966
In my excel sheet I am creating URLs by concatenating the content of various cells.
The formula in D2 is =CONCATENATE("http://",A2,".",B2)
The problem I have is that the resulting URL is not seen as a hyperlink, and I have to manually copy, paste as value and then configure the hyperlink to make it work.
Is there a way to let excel recognize it as a URL and make it immediatly clickable?
Upvotes: 3
Views: 5486
Reputation: 96753
In D2 enter:
=HYPERLINK(CONCATENATE("http://",A2,".",B2),CONCATENATE("http://",A2,".",B2))
(you can now replace the second argument with a "user friendly" label)
Upvotes: 4