Autofil a cell in the same row.

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

Guest

What I would like to do is autofil a cell with hardcoded name when a cell on
the same row is updated. I.E. if data is entered in cell B2,B3,B4 ETC. then
the 'hardcoded name' will be placed in B1
 
Not sure, but you could try something like this in B1:
=IF(COUNTA(B2:B10)>0,"hardcoded name","")

If anything is entered in any cell within B2:B10,
B1 will display: hardcoded name
otherwise B1 will remain "blank"

Adapt the range to suit ..
 
This works fine...thanks a lot.

Max said:
Not sure, but you could try something like this in B1:
=IF(COUNTA(B2:B10)>0,"hardcoded name","")

If anything is entered in any cell within B2:B10,
B1 will display: hardcoded name
otherwise B1 will remain "blank"

Adapt the range to suit ..
 

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