Follow

Keep Up to Date with the Most Important News

By pressing the Subscribe button, you confirm that you have read and are agreeing to our Privacy Policy and Terms of Use
Contact

How to find a location of a cell which contain certain text?

I would like to find the location of a cell that contains certain text. For instance, I would like to find cell number of the cell which contains Functionviel,

For example, a cell is: Functionviel : 1.59545e+07 EUR, whose cell number let’s say A19845. Then using that I will perform certain operations like: =TRIM(MID($A$19845, 28, 7))*POWER(10,7)

How can I find which cell includes Functionviel?

MEDevel.com: Open-source for Healthcare and Education

Collecting and validating open-source software for healthcare, education, enterprise, development, medical imaging, medical records, and digital pathology.

Visit Medevel

>Solution :

Using these definitions:

A4:A12 is our array to search. 
B1 has the text you want to find. 

This formula will search your range for the desired text and return the cell address. It’s using a wildcard search.

=CELL("address", INDEX($A$4:$A$12,MATCH("*"&$B$1&"*",$A$4:$A$12,0)))

Index + Match provides advanced lookup capabilities in Excel.

Add a comment

Leave a Reply

Keep Up to Date with the Most Important News

By pressing the Subscribe button, you confirm that you have read and are agreeing to our Privacy Policy and Terms of Use

Discover more from Dev solutions

Subscribe now to keep reading and get access to the full archive.

Continue reading