Cell name

  • Thread starter Thread starter excelnewbie
  • Start date Start date
E

excelnewbie

I'd like to insert the cell name (found in the upper left-hand corner of the
sheet) into each cell automatically. For instance, I have an F row, and I'd
like for each cell to say the column letter + row number. How can I do this?
Thankks
 
Use:

=SUBSTITUTE((LEFT(ADDRESS(1,COLUMN()),3)),"$","") & ROW()
 
you may want to drag across so change to this

=ADDRESS(ROW(),COLUMN(),4)

Mike
 

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