简体   繁体   English

用于增加工作表编号而不是Google工作表中单元格编号的公式

[英]Formula to increment value of sheet no and not the cell number in google sheets

I have a formula say as below =Req_113!B3 This means ,take value of B3 from Sheet "Req_113". 我有一个公式说如下= Req_113!B3这意味着,从工作表“ Req_113”中获取B3的值。 This formula i want to apply to a column. 我想将此公式应用于一列。 the value is always fixed from B3 but i just want to vary the sheet name like Req_114,Req_115,Req_116.... 该值始终是B3固定的,但我只想更改工作表名称,例如Req_114,Req_115,Req_116 ....

The formula should be expanded to each cell as like this 公式应该像这样扩展到每个单元格

=Req_114!B3
=Req_115!B3
=Req_116!B3
.
.

I tried to drag the formula to apply all cells below but the cell number got varied and not the sheet name. 我试图拖动公式以应用下面的所有单元格,但是单元格编号有所变化,而不是工作表名称。

Please suggest the right method to apply the formula 请提出适用公式的正确方法

如果=Req_114!B3在第1行中,则可以改用

=INDIRECT("Req_" & (113 + ROW()) & "!B3")

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

相关问题 Google表格公式中的数字增量 - Number increment in Google Sheets formula +1 和 -1 递增按钮到带有公式的 google 表格单元格 - +1 and -1 Increment button to a google sheets cell with a formula 是否有 Google 表格公式可以将表格名称放入单元格中? - Is there a Google Sheets formula to put the name of the sheet into a cell? Google表格,尝试使用公式来引用另一张表格中的单元格来确定行号 - Google Sheets, Trying to reference a cell in another sheet using a formula to determine the row number 谷歌表格 - 基于另一个表格中单元格值的条件格式 - 自定义公式 - Google Sheets - Conditional Formatting based on value of cell in another sheet - Custom Formula 谷歌表格公式引用另一个包含工作表名称和范围的单元格值 - Google Sheets formula to reference to another cell value that contains a sheet name & range 是否可以在谷歌表格中编写一个数组公式来增加单元格引用? - is it possible to write an array formula in google sheets that will increment cell referents? 使用公式根据 Google 表格中的单元格值增加和重复范围 - Increment & Repeat a range based on cell values in Google sheets USING FORMULA Google表格根据单元格值应用公式 - Google Sheets Apply formula based on cell value Google 表格:固定单元格值的数组公式 - Google Sheets: Array formula for fixed cell value
 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM