在 Google 工作表中动态使用命名范围变量名称

Use named range variable name dynamically in Google sheets

我是 Google sheet 的新手。 我有一个具有多个命名范围的 sheet。每个范围都以 "company_{{ id }}" 命名,例如"company_snapchat".

我有如下公司 ID 列表:

|---------------------|------------------|
|      Company ID     |  Sum of Costs    |
|---------------------|------------------|
|      snapchat       |    <formula>     |
|---------------------|------------------|
|      facebook       |    <formula>     |
|---------------------|------------------|

在公式中,我想将其命名范围引用为 "company_"&a2。然而它不起作用。

使用 INDIRECT() 将单元格中的值引用为单元格引用

=INDIRECT("company_"&A2)

通常我们使用 A1R1C1,但也使用命名范围