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))
 
Back
Top