Function HYPERLINK-Introduction and practice of using Excel or WPS

1. HYPERLINK function function

1.1 Function

HYPERLINK is a hyperlink, and its main functions include: jump within documents, jump between documents, jump to a local specified path, jump to a specified website, etc.

1.2 Function syntax structure

HYPERLINK(link_location,[friendly_name])
parameter description:
link_location : required parameter.
It mainly includes the following value types:

  • Local or shared folder path or file full path
  • Area in the current document
  • Web address
    [ Note ] If the jump specified in link_location does not exist or cannot be located, an error message will appear when you click the cell.

friendly_name : Optional parameter.
If the value is not maintained for the jump text displayed in the cell, the cell will display link_location as the jump text.

2. Commonly used functions

Several commonly used functions
Insert picture description here

2.1 Link to folder

=HYPERLINK("D:\Hyperlink Test\hyperlink","2.1 Link to Folder")
Insert picture description here

2.2 Link to file

=HYPERLINK("D:\Hyperlink Test\hyperlink\file1.xlsx","2.2 Link to File")
Insert picture description here

2.3 Link to the designated area of ​​the current workspace

=HYPERLINK("#B1","2.3 Link to the designated area of ​​the current workspace")
Insert picture description here

2.4 Link to the designated area of ​​other worksheets of the current file

=HYPERLINK("#Sheet2!E1","2.4 Link to the specified area of ​​other worksheets of the current file")
Insert picture description here
Insert picture description here

2.5 Link to webpage

=HYPERLINK("https://cn.bing.com/","2.5 Link to webpage-Bing homepage")
Insert picture description here

Guess you like

Origin blog.csdn.net/wanglei880526/article/details/108811412