hyperlink函数_30天中30个Excel函数:28 – HYPERLINK

2023-10-19 15:20
文章标签 excel 函数 30 28 hyperlink 天中

本文主要是介绍hyperlink函数_30天中30个Excel函数:28 – HYPERLINK,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

hyperlink函数

Yesterday, in the 30XL30D challenge, we replaced text with the SUBSTITUTE function, and used it to create flexible reports.

昨天,在30XL30D挑战赛中,我们用SUBSTITUTE函数替换了文本,并使用它来创建灵活的报告。

For day 28 in the challenge, we'll examine the HYPERLINK function. Instead of manually creating hyperlinks, with the command on the Excel Ribbon, you can use this function.

在挑战的第28天,我们将研究HYPERLINK功能。 您可以使用此功能来代替使用Excel功能区上的命令手动创建超链接。

NOTE: You can have all of the 30 Functions content in an easy-to-use single reference file -- the 30 Excel Functions in 30 Days eBook Kit ($10).

注意:您可以在一个易于使用的单个参考文件中获得这30个函数的全部内容-30天电子书工具包中的30个Excel函数 (10美元)。

So, let's take a look at the HYPERLINK information and examples, and if you have other tips or examples, please share them in the comments.

因此,让我们看一下HYPERLINK信息和示例,如果还有其他提示或示例,请在评论中分享。

功能28:超链接 (Function 28: HYPERLINK)

The HYPERLINK function creates a shortcut that opens a document stored on a computer, network server, intranet, or Internet.

HYPERLINK函数创建快捷方式,以打开存储在计算机,网络服务器,Intranet或Internet上的文档。

Hyperlink00

您如何使用HYPERLINK? (How Could You Use HYPERLINK?)

The HYPERLINK function can open a document, or jump to a specific location, so you can:

HYPERLINK函数可以打开一个文档,或跳转到特定位置,因此您可以:

  • Link to location in same file

    链接到同一文件中的位置
  • Link to Excel file in same folder

    链接到同一文件夹中的Excel文件
  • Link to website

    链接到网站

HYPERLINK语法 (HYPERLINK Syntax)

The HYPERLINK function has the following syntax:

HYPERLINK函数具有以下语法:

    • link_location is the text string for the location where you want to go.

      link_location是您要去的位置的文本字符串。
    • friendly_name is the text you want displayed in the cell

      friendly_name是要在单元格中显示的文本

    HYPERLINK(link_location,friendly_name)

    HYPERLINK(链接位置,友好名称)

超级陷阱 (HYPERLINK Traps)

If you have trouble creating the correct location string for the HYPERLINK function, manually insert a link with the Hyperlink command on Excel's Ribbon.

如果您无法为HYPERLINK函数创建正确的位置字符串,请使用Excel功能区上的Hyperlink命令手动插入链接。

That should show you the correct syntax, then recreate that in your link_location argument.

那应该为您显示正确的语法,然后在link_location参数中重新创建该语法。

示例1:链接到同一文件中的位置 (Example 1: Link to location in same file)

There are several different ways to create the text string for the link_location argument. In the first example, the ADDRESS function returns the address for row 1, column 1, on the sheet that is named in cell B3.

有多种方法可以为link_location参数创建文本字符串。 在第一个示例中, ADDRESS函数返回单元格B3中命名的工作表上第1行第1列的地址。

The pound sign (#) at the start of the address indicates that the location is within the current file.

地址开头的井号(#)表示该位置在当前文件中。

=HYPERLINK("#"&ADDRESS(1,1,,,B3),D3)

= HYPERLINK(“#”&ADDRESS(1,1 ,,, B3),D3)

Hyperlink01a

You could also use the & operator to construct the link location. Here, the sheet name is in cell B5 and the cell is in C5.

您也可以使用&运算符来构造链接位置。 此处,工作表名称在单元格B5中,而单元格在C5中。

=HYPERLINK("#"&"'" & B5 & "'!" & C5,D5)

= HYPERLINK(“#”&“'”&B5&“'!”&C5,D5)

Hyperlink01b
Hyperlink01c

For a link to a named range in the same workbook, just use the range name as the link location. =HYPERLINK("#"&D7,D7)

要链接到同一工作簿中的命名范围,只需使用范围名称作为链接位置。 = HYPERLINK(“#”&D7,D7)

示例2:链接到同一文件夹中的Excel文件 (Example 2: Link to Excel file in same folder)

To create a link to another Excel file, in the same folder, just use the file name as the link_location argument for the HYPERLINK function.

要在同一文件夹中创建到另一个Excel文件的链接,只需使用文件名作为HYPERLINK函数的link_location参数即可。

For files that are up a level or more in the hierarchy, use two periods and a backslash for each level.

对于层次结构中上一级或更高级别的文件,请对每个级别使用两个句点和一个反斜杠。

=HYPERLINK(C3,D3)

= HYPERLINK(C3,D3)

Hyperlink02

示例3:链接到网站 (Example 3: Link to a website)

You can also link to website pages with the HYPERLINK function. In this example, the URL is constructed from text strings, and the website name is used as the friendly name.

您也可以使用HYPERLINK功能链接到网站页面。 在此示例中,URL是由文本字符串构成的,并且网站名称用作友好名称。

=HYPERLINK("http://www." &B3 & ".com",B3)

= HYPERLINK(“ http:// www。”&B3&“ .com”,B3)

Hyperlink03

下载HYPERLINK功能文件 (Download the HYPERLINK Function File)

To see the formulas used in today's examples, you can download the HYPERLINK function sample workbook. The file is zipped, and is in Excel 2007 file format.

要查看当今示例中使用的公式,可以下载HYPERLINK函数示例工作簿 。 该文件已压缩,并且为Excel 2007文件格式。

观看HYPERLINK视频 (Watch the HYPERLINK Video)

To see a demonstration of the examples in the HYPERLINK function sample workbook, you can watch this short Excel video tutorial.

要观看HYPERLINK函数示例工作簿中示例的演示,您可以观看此简短的Excel视频教程。

演示地址

翻译自: https://contexturesblog.com/archives/2011/01/29/30-excel-functions-in-30-days-28-hyperlink/

hyperlink函数


http://www.taodudu.cc/news/show-8001901.html

相关文章:

  • WPF Hyperlink的显示隐藏(不是下划线的隐藏)
  • asp.net_动态创建页面跳转控件(HyperLink)
  • HyperLink 控件
  • pandas使用HYPERLINK追加写入超链接-url、文件、图片
  • 【C#】WPF中HyperLink超链接的使用
  • Invalid Hyperlink: Malformed URI is embedded as a hyperlink in the document.
  • C6678之HyperLink
  • WPF 隐藏Hyperlink下划线
  • Hyperlink
  • Excel中hyperlink函数用法与实例
  • 函数HYPERLINK - Excel或WPS使用方法介绍及实操
  • 20120716又去健身房
  • 健身房和俱乐部会员软件行业调研报告 - 市场现状分析与发展前景预测(2021-2027年)
  • 思博伦Spirent TestCenter创建单播流uni-stream
  • 思博伦Spirent TestCenter抓包设置
  • 思博伦Spirent TestCenter制作Latency脚本
  • 思博伦Spirent TestCenter设置iMIX帧
  • centos7.4 安装netcat工具及测试
  • 分布式理论基础之CAP理论BASE理论
  • CentOS7.4 上安装 zookeeper-3.4.14 服务
  • MongoDB查询操作限制返回字段的解决方案
  • 关于Linux中nohup.out日志过大问题解决方法
  • MySQL 4种事务隔离级别
  • centos7 创建普通用户
  • [CentOS_7.4]Linux编译安装ffmpeg4.3.1
  • 计算机在游戏界面应用,电脑玩游戏屏幕上突然出现应用程序错误怎么办
  • 2021年的总结
  • 十年测试人整理的7个学习自动化测试小技巧希望能帮助到你
  • 申请专利无效流程怎么走?
  • 小学数学与计算机应用,计算机在小学数学中的应用.doc
  • 这篇关于hyperlink函数_30天中30个Excel函数:28 – HYPERLINK的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



    http://www.chinasem.cn/article/240643

    相关文章

    hdu1171(母函数或多重背包)

    题意:把物品分成两份,使得价值最接近 可以用背包,或者是母函数来解,母函数(1 + x^v+x^2v+.....+x^num*v)(1 + x^v+x^2v+.....+x^num*v)(1 + x^v+x^2v+.....+x^num*v) 其中指数为价值,每一项的数目为(该物品数+1)个 代码如下: #include<iostream>#include<algorithm>

    30常用 Maven 命令

    Maven 是一个强大的项目管理和构建工具,它广泛用于 Java 项目的依赖管理、构建流程和插件集成。Maven 的命令行工具提供了大量的命令来帮助开发人员管理项目的生命周期、依赖和插件。以下是 常用 Maven 命令的使用场景及其详细解释。 1. mvn clean 使用场景:清理项目的生成目录,通常用于删除项目中自动生成的文件(如 target/ 目录)。共性规律:清理操作

    2024网安周今日开幕,亚信安全亮相30城

    2024年国家网络安全宣传周今天在广州拉开帷幕。今年网安周继续以“网络安全为人民,网络安全靠人民”为主题。2024年国家网络安全宣传周涵盖了1场开幕式、1场高峰论坛、5个重要活动、15场分论坛/座谈会/闭门会、6个主题日活动和网络安全“六进”活动。亚信安全出席2024年国家网络安全宣传周开幕式和主论坛,并将通过线下宣讲、创意科普、成果展示等多种形式,让广大民众看得懂、记得住安全知识,同时还

    C++操作符重载实例(独立函数)

    C++操作符重载实例,我们把坐标值CVector的加法进行重载,计算c3=c1+c2时,也就是计算x3=x1+x2,y3=y1+y2,今天我们以独立函数的方式重载操作符+(加号),以下是C++代码: c1802.cpp源代码: D:\YcjWork\CppTour>vim c1802.cpp #include <iostream>using namespace std;/*** 以独立函数

    函数式编程思想

    我们经常会用到各种各样的编程思想,例如面向过程、面向对象。不过笔者在该博客简单介绍一下函数式编程思想. 如果对函数式编程思想进行概括,就是f(x) = na(x) , y=uf(x)…至于其他的编程思想,可能是y=a(x)+b(x)+c(x)…,也有可能是y=f(x)=f(x)/a + f(x)/b+f(x)/c… 面向过程的指令式编程 面向过程,简单理解就是y=a(x)+b(x)+c(x)

    利用matlab bar函数绘制较为复杂的柱状图,并在图中进行适当标注

    示例代码和结果如下:小疑问:如何自动选择合适的坐标位置对柱状图的数值大小进行标注?😂 clear; close all;x = 1:3;aa=[28.6321521955954 26.2453660695847 21.69102348512086.93747104431360 6.25442246899816 3.342835958564245.51365061796319 4.87

    OpenCV结构分析与形状描述符(11)椭圆拟合函数fitEllipse()的使用

    操作系统:ubuntu22.04 OpenCV版本:OpenCV4.9 IDE:Visual Studio Code 编程语言:C++11 算法描述 围绕一组2D点拟合一个椭圆。 该函数计算出一个椭圆,该椭圆在最小二乘意义上最好地拟合一组2D点。它返回一个内切椭圆的旋转矩形。使用了由[90]描述的第一个算法。开发者应该注意,由于数据点靠近包含的 Mat 元素的边界,返回的椭圆/旋转矩形数据

    Unity3D 运动之Move函数和translate

    CharacterController.Move 移动 function Move (motion : Vector3) : CollisionFlags Description描述 A more complex move function taking absolute movement deltas. 一个更加复杂的运动函数,每次都绝对运动。 Attempts to

    C#关闭指定时间段的Excel进程的方法

    private DateTime beforeTime;            //Excel启动之前时间          private DateTime afterTime;               //Excel启动之后时间          //举例          beforeTime = DateTime.Now;          Excel.Applicat

    ✨机器学习笔记(二)—— 线性回归、代价函数、梯度下降

    1️⃣线性回归(linear regression) f w , b ( x ) = w x + b f_{w,b}(x) = wx + b fw,b​(x)=wx+b 🎈A linear regression model predicting house prices: 如图是机器学习通过监督学习运用线性回归模型来预测房价的例子,当房屋大小为1250 f e e t 2 feet^