简体   繁体   English

在一列中查找值并返回另一列中找到的行中指定单元格的值

[英]Find value in one column and return value of a specified cell in the row found in another column

I have something like this:我有这样的事情:

在此处输入图像描述

Where I'd like to return in E3 , the value of B of the row that matches with D3 .我想在E3中返回与D3匹配的行的B的值。

=IF(A:A="D3",return the value from B from the row that matches with D3)

Please use this formula请使用这个公式

=INDEX(IFERROR(VLOOKUP(C2:C,A2:B,2,0)))

在此处输入图像描述

Functions used:使用的功能:

暂无
暂无

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

相关问题 如何在同一行的另一列中显示指定值的一列中的值 - How to show the value in one column for a specified value in another column in the same row 在一列中查找名称,从另一列返回值 - Find name in one column, return value from another 在单元格中查找值,选择/激活另一列 - Find a value in a cell, select/activate another column 我想从一个单元格中找到一个值,如果找到,打印同一行中另一个单元格的内容 - I want to find a value from one cell, and if found print the contents of another cell in the same Row Google表格-在另一列中找到一个单元格值,然后返回包含该字符串的第一个单元格 - Google Sheets - Find a cell value in another column and return first cell that CONTAINS the string 如何在当前单元格上方找到最接近的匹配值,并在同一行中返回不同的列? - How can I find the closest matching value ABOVE the current cell, and return a different column in that same row? 如果满足单元格值的条件,则返回所有对行/列的列表 - Return a list of all pairs row/column if condition of cell value is met 在值列中搜索单元格值以查找行号 - Search a cell value within a column of values to find row number 查找包含某些值的行号和列,然后将值插入该单元格 - Find Row Number and Column that contain certain values, then insert value into that cell 从具有固定列和可变行的另一张工作表中获取单元格的值 - getting the value of a cell from another sheet with a fixed column and a variable row
 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM