=HYPERLINK(link_location, [friendly_name])
=HYPERLINK("#Sheet2!A1","Sheet2")
creates a hyperlink to a worksheet named "Sheet2" and the cell A1 on that worksheet. This is useful for navigating between sheets in the same workbook.=HYPERLINK("www.example.com","Example Website")
creates a hyperlink to a website. This is useful for quickly navigating to a specific website from Sourcetable.=HYPERLINK("#'Sheet 2'!A1","Sheet 2")
will generate an invalid error because there is a space in the sheet name. To avoid this, use an underscore or remove the space when naming the sheet.=HYPERLINK("http://www.example.com","Example Website")
creates a hyperlink to a website using the http protocol. This is useful for quickly navigating to a specific website from Sourcetable.=HYPERLINK("https://www.example.com","Example Website")
creates a hyperlink to a website using the https protocol. This is useful for quickly navigating to a secure website from Sourcetable.=HYPERLINK("file:///C:/example.xlsx","Example File")
creates a hyperlink to a file on the user's computer.The HYPERLINK function creates a shortcut that when clicked will jump to a different location in the current workbook, or open a document stored on a network server, intranet, or the Internet.