Change result #VALUE! to "message"

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

Guest

My formula returns last value in column of numbers. If all cells in range are blank, the formula returns #VALUE!. I would like formula to return message "No Scores". I have tried IF formula but keep getting message re circular reference
Can following formula be modified?

=INDEX(B35:B49,COUNTA(B35:B49),1

Thank
Bob Leonar
 
One way:

=IF(COUNTA(B35:B49),INDEX(B35:B49, COUNTA(B35:B49),1),"")
 

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