导入数据 Google Sheet 到 Google Sheet
Importing Data Google Sheet to Google Sheet
抱歉所有的菜鸟问题。
我有 2 个电子表格:
- 1 包含所有姓名和工资率
- 另一种是时间表格式
我基本上需要时间表电子表格上的一个公式来查看工资率电子表格并导入数据。
示例:
- 姓名电子表格 - (A1) Beth Hawkins (B1) £120
- 时间表电子表格 - 姓名 Beth Hawkins 输入到单元格 C9,我需要在单元格 O9 中输入一个公式,然后进入姓名电子表格并找到 Beth 的工资率,并在键入姓名时自动输入
这可能吗?
再次感谢!!!
你提到了
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)
使用的函数:
抱歉所有的菜鸟问题。
我有 2 个电子表格:
- 1 包含所有姓名和工资率
- 另一种是时间表格式
我基本上需要时间表电子表格上的一个公式来查看工资率电子表格并导入数据。
示例:
- 姓名电子表格 - (A1) Beth Hawkins (B1) £120
- 时间表电子表格 - 姓名 Beth Hawkins 输入到单元格 C9,我需要在单元格 O9 中输入一个公式,然后进入姓名电子表格并找到 Beth 的工资率,并在键入姓名时自动输入
这可能吗?
再次感谢!!!
你提到了
Name Spreadsheet -
(A1)
Beth Hawkins(B1)
£120Timesheet Spreadsheet - the name Beth Hawkins is inputted into cell
C9
, I need a formula in cellO9
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)
使用的函数: