Reputation: 649
I have a list of serial numbers in a column and I would like to create a hyperlink in a different column to a website that will contain the serial number found in the corresponding cell. For example:
Is there a way to input a formula using the hyperlink fx? Something like =HYPERLINK(www.website.com/[A2]
?
Upvotes: 0
Views: 37
Reputation: 49998
Just concatenate with &
:
=HYPERLINK("www.website.com/" & A2)
You can concatenate more text if needed:
=HYPERLINK("www.website.com/" & A2 & "/search")
Upvotes: 1