Display Hyperlinks from a drop down.

Patti2023
✭✭✭
I have a sheet with a dropdown menu, the column next to that menu is where I want to pull the hyperlinks from another page. i.e. If the dropdown column is A then the hyperlink column will display the hyperlink to A.
I've tried:
=IF(Architect@row = "Sargenti", HYPERLINK("https://app.smartsheet.com/"), IF (Architect@row = "QSR&R", HYPERLINK("https://app.smartsheet.com/")))
Thoughts?
Answers
-
There is no HYPERLINK function. Generally speaking, you should be able to just have the formula output the appropriate URL and it will automatically be converted into a hyperlink.
=IF(Architect@row = "Sargenti", "https://app.smartsheet.com/", IF (Architect@row = "QSR&R", "https://app.smartsheet.com/"))