【问题标题】:Excel 2013 I have defined names, but I need to access the names from string concatenation. Is it possible?Excel 2013 我已经定义了名称,但我需要从字符串连接中访问名称。可能吗?
【发布时间】:2015-05-24 06:59:16
【问题描述】:

在 excel 2013 中,我为单元格范围定义了名称。

但在公式中,我需要从字符串连接中访问定义的名称。

例如。定义名称:B2: B10 as March_Sales

公式:=sum("March"&"_Sales") - 有可能。谁能帮帮我

【问题讨论】:

  • =sum(indirect("March"&"_Sales")) 有效吗?

标签: excel excel-formula


【解决方案1】:

以下所有工作:

=SUM(March_Sales)
=SUM(INDIRECT("March_Sales"))
=SUM(INDIRECT("Mar" & "ch_" & "Sal" & "es"))

【讨论】:

    猜你喜欢
    • 1970-01-01
    • 2014-03-23
    • 2016-07-30
    • 2016-08-09
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    相关资源
    最近更新 更多