简体   繁体   English

excel 在一个单元格中获取包含特定文本的所有单元格

[英]excel get in one cell all the cells containing specific text

In excel, i would like to see in only one cell a list of all the cells location which contains specific text, is that feasible?在 excel 中,我只想在一个单元格中看到包含特定文本的所有单元格位置的列表,这可行吗?

For example: I want to see in only one cell, A7, the location of all cells containing "FALSE" value: A2, B3例如:我只想在一个单元格 A7 中查看所有包含“FALSE”值的单元格的位置:A2、B3

在此处输入图像描述

To get the location, i think i can use the formula IF(ISERROR(A1:B4),ROW()) but i get a table as a result instead of all the values in one cell.要获得位置,我想我可以使用公式 IF(ISERROR(A1:B4),ROW()) 但我得到一个表格作为结果,而不是一个单元格中的所有值。

Final formula:最终公式:

(Replace semicolon with comma for your Excel version) (用逗号替换您的 Excel 版本的分号)

=SUBSTITUTE(SUBSTITUTE(CONCAT(IF($A$1:$B$5=FALSE;ADDRESS(ROW($A$1:$B$5);COLUMN($A$1:$B$5));"")&", ");"$";"");", , ";"")

在此处输入图像描述

暂无
暂无

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

相关问题 EXCEL-是否有公式将包含特定文本的所有单元格复制到另一列? - EXCEL - is there a formula to copy all the cells containing specific text to another column? 在包含特定文本的所有单元格中查找包含特定文本,多次出现以及过去活动单元格的单元格 - find a cell with specific text, multiple occurences, and past active cell in all cells containing specific text 如何在包含数字的单元格范围内显示包含文本的单元格 - How to display the one cell containing text in a range of cells containing numbers Excel-如何仅对包含特定文本的单元格查找重复单元格 - Excel - how to find duplicates cells ONLY for cells containing specific text 如何获取Excel中包含特定文本的单元格旁边的单元格的值 - How to get the value of a cell which is next to a cell containing specific text in Excel Excel:计算来自一个单元格文本内不同单元格的特定文本字符串 - Excel: Count specific text strings from different cells within text of one cell Excel function 参考特定单元格和下面的所有单元格 - Excel function reference specific cell and all cells below Excel - 如果不包含特定文本且非空白,则有条件地格式化列中的单元格 - Excel - Conditionally format cell in column if NOT containing specific text and is NOT BLANK Excel VBA选择一个单元格区域,直到一个单元格包含特定文本 - Excel VBA Select a Range of Cells Until a Cell Contains Specific Text 用 Excel VBA 将特定单元格着色一个单元格 - Coloring specific cells with Excel VBA off by one cell
 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM