导入数据 Google Sheet 到 Google Sheet

Importing Data Google Sheet to Google Sheet

抱歉所有的菜鸟问题。

我有 2 个电子表格:

我基本上需要时间表电子表格上的一个公式来查看工资率电子表格并导入数据。

示例:

这可能吗?

再次感谢!!!

你提到了

Name Spreadsheet - (A1) Beth Hawkins (B1) £120

Timesheet Spreadsheet - the name Beth Hawkins is inputted into cell C9, I need a formula in cell O9 to then go into the name spreadsheet and find the payrate that Beth is on, and automatically input that when the name is typed

您可以在 O9 单元格中使用以下公式:

=IFERROR(VLOOKUP(C9,IMPORTRANGE("xxxxxxx","Name!A1:B"),2,0))

(其中 xxxxxxx 是名称电子表格 ID)

使用的函数: