【问题标题】:Hyperlinking a cell with multiple variables to another cell in the same sheet using excel使用excel将具有多个变量的单元格超链接到同一工作表中的另一个单元格
【发布时间】:2016-05-31 00:40:53
【问题描述】:

有没有办法合并IFHYPERLINK 函数?

我的IF 语句运行顺利,但我在添加HYPERLINK 时遇到问题。

下面提供的示例。

=IF(A2="Complete Blue Section","Blue Section Link",IF(A2="Complete Red Section"," Red Section Link",""))

还有一个HYPERLINK 公式。这是一个例子:

=HYPERLINK("#Sheet6!B44","Blue Questions")

【问题讨论】:

    标签: vba excel if-statement hyperlink


    【解决方案1】:
    =IF(A2="Blue",HYPERLINK("#Sheet2!B44","Blue Questions"), 
                  HYPERLINK("#Sheet3!B44","Red Questions"))
    

    【讨论】:

      【解决方案2】:

      假设如果A2 = "Complete Blue Section" 你想在点击单元格时转到单元格B44,那么下面的组合示例应该可以工作:

      =IF(A2="Complete Blue Section", HYPERLINK("#Sheet6!B44", "Blue Questions"), IF(A2="Complete Red Section", " Red Section Link", ""))
      

      【讨论】:

        猜你喜欢
        • 1970-01-01
        • 2014-03-28
        • 1970-01-01
        • 2020-04-25
        • 1970-01-01
        • 1970-01-01
        • 1970-01-01
        • 2021-10-29
        • 1970-01-01
        相关资源
        最近更新 更多