finding row number?

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I would like to find the row number of a cell in column A with specific text.
Would any one help?
 
=MATCH("text",A:A,0)

--

HTH

RP
(remove nothere from the email address if mailing direct)
 
james wrote...
I would like to find the row number of a cell in column A with specific
text.
Would any one help?

Hi James,

Let's assume you were looking for the row number where "Stuff" is written in
text.

In cell B1....
=MATCH("Stuff", A1:A50,0)

Here I am searching for A1:A50. You can choose the appropriate range.

The result is 20. Thus, I know the row number is the 20th row of A1:A50, or
row 20.

I am not sure that is exactly what you are looking for. If not, please
provide more detail.

Hope that helps.

Regards,
Kevin
 

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