简体   繁体   English

从单元格获取值并使用其引用另一个电子表格中单元格的公式?

[英]Formula to grab value from a cell and use that to refer to a cell in another spreadsheet?

I need help creating a formula in a cell in a spreadsheet that would allow me to grab a value from another cell and use that value to refer to yet another cell in another sheet. 我需要在电子表格的单元格中创建公式的帮助,该公式使我可以从另一个单元格中获取值,并使用该值引用另一个工作表中的另一个单元格。

For example, in a cell that returns a student's class grade (a progress report sheet) I have the cell refer to my master grade sheet (eg. the progress report sheet's cell would be: =mastersheet!E[grab value in cell A1 of current sheet]) 例如,在返回学生班级成绩的单元格(进度报告表)中,我让该单元格参考了我的硕士成绩表(例如,进度报告表的单元格为: =mastersheet!E[grab value in cell A1 of current sheet])

What formula do I use to grab a cell's value and use it to define/refer to another cell? 我使用什么公式来获取一个单元格的值并使用它来定义/引用另一个单元格?

In Excel, if Sheet1 A1 contains B2 then in Sheet1 =INDIRECT("Sheet2!"&A1) will return the contents of Sheet2!B2. 在Excel中,如果Sheet1 A1包含B2则在Sheet1 =INDIRECT("Sheet2!"&A1)将返回Sheet2!B2的内容。

In Google Docs spreadsheet, if Sheet1 E1 contains 4 then in Sheet1 =Indirect("Sheet2!E"&E1) will return the contents of Sheet2 Cell E4. 在Google Docs电子表格中,如果Sheet1 E1包含4则在Sheet1 =Indirect("Sheet2!E"&E1)中将返回Sheet2单元格E4的内容。

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

相关问题 在公式中,通过单元格值引用工作表 - In a formula, refer to a sheet by a cell value Excel VBA使用另一个单元格中的值作为条件格式的公式 - Excel VBA use value from another cell as formula for conditional formating 单元格公式链接到另一个单元格并使用该公式 - Cell Formula to link to another cell and use that formula 尝试使用一个单元格中的值来填充另一个单元格中的公式 - Trying to use the value in one cell to populate a formula in another cell Ruby Spreadsheet Gem:从Excel文件中的公式单元格提取值 - Ruby Spreadsheet Gem: extracting value from a formula cell in an Excel file Excel:求和公式,从一个单元格中的值到另一个单元格中的值 - Excel: Summation formula, from a value in a cell, to a value in another cell 如何在Excel中将单元格的值引用为公式 - How to refer the value of a cell in excel into a formula vsto Excel 2010 add in-在内容引用另一个单元格和公式时获取单元格的值 - vsto excel 2010 add in - get value of cell when contents refer to another cell and formula 用另一个单元格的值控制公式 - controlling a formula with the value from another cell 如何基于电子表格中另一个单元格中的值动态更改公式中的输入单元格? - How do I dynamically change input cell in a formula based on the value in another cell in a spreadsheet?
 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM