I have 2 cells with data inside of them
Cell A1 Contains text "Search: "
Cell B1 Contains a hyperlink https://www.google.com Display Text "Google"
I want C1 to say "Search : Google" hyperlinked so that when I click on it, it takes me to Google.
The formulas I tried
=HYPERLINK(B1, CONCATENATE(A1, ":", B1, "(", C1, ")"))
=CONCATENATE(A1, ":", HYPERLINK(B1, CONCATENATE(B1, "(", C1, ")")))
Both formulas return in Cell C1 "Search : Google"
But the hyperlink tends to grab the display text which is Google instead of https://www.google.com