【发布时间】:2017-08-18 16:07:53
【问题描述】:
如果 B 列中的数字在 H 列中匹配,那么我想将 G 列中的代表姓名复制到匹配旁边的 C 列。
这是 Google 表格中的一个示例。
https://docs.google.com/spreadsheets/d/1WkSl7kyODra5LULxtNXA6pcBEEkEh86_BLjoGYCrgRA/edit?usp=sharing
【问题讨论】:
标签: excel google-sheets spreadsheet
如果 B 列中的数字在 H 列中匹配,那么我想将 G 列中的代表姓名复制到匹配旁边的 C 列。
这是 Google 表格中的一个示例。
https://docs.google.com/spreadsheets/d/1WkSl7kyODra5LULxtNXA6pcBEEkEh86_BLjoGYCrgRA/edit?usp=sharing
【问题讨论】:
标签: excel google-sheets spreadsheet
在单元格C2中输入以下公式并向下拖动,
=INDEX(G:G,MATCH(B2,H:H,0),1)
【讨论】: