"VALUE"

  • Thread starter Thread starter flkulchar
  • Start date Start date
F

flkulchar

My spreadsheet appears as follows:


A B C D
1
"VALUE"
2 2 5 6 13

My D column asks for the sum of A+B+C...

WHY DOES THE CELL RETURN A DISPLAY OF "VALUE" WHEN THE
CELLS THAT ARE ADDED ARE BLANK??

Thanks,

Larry
 
Check your formula to make sure it includes the rows --
=A1+B1+B1

Also make sure there is no data in the row by using the
delete key -- using the space bar to clear the cells can
cause that error.
 
Oops! Typo! I meant =A1+B1+C1
-----Original Message-----
Check your formula to make sure it includes the rows --
=A1+B1+B1

Also make sure there is no data in the row by using the
delete key -- using the space bar to clear the cells can
cause that error.

.
 
B1 and C1 may APPEAR blank but in fact they contain text strings that have
no visible appearance. Perhaps they contain formulae that return "".
Try using
=SUM(A1:C1)
or
=A1+N(B1)+N(C1)
 

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