Find Cell

  • Thread starter Thread starter ianripping
  • Start date Start date
I

ianripping

How do I find the row number of a cell with a certain criteria

eg.

In Col a I have a list of names

I want a function to search col A for a certain name and return its ro
number
 
One way:

=MATCH(Name, A:A, FALSE)

or, if the name may not exist in the column:

=IF(ISNA(MATCH(Name, A:A, FALSE)), "", MATCH(Name, A:A, FALSE))
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top