autosum on a column

  • Thread starter Thread starter volunteer
  • Start date Start date
V

volunteer

I have a function in column C which refers to column B, the function puts
either a 0 or a1 into column C, but coulumn C will not autosum,, why? is it
not recognizing the result of 0 or 1 as a number? if not, how can I make it
do it? here is my function:
=IF(ISBLANK(B281),0,"1")
thanks in advance for any help!
 
Change your formula to the following:

=IF(ISBLANK(B281),0,1)

The 1 in quotes was treated as a string and not a value.
 
Back
Top