autosum on a column

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!
 
K

Kevin B

Change your formula to the following:

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

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

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

Similar Threads

AUTOSUM FORMULA 2
An odd problem with SUM(A:B) and AutoSum 2
Autosum won't work 1
Autosum not displaying until spreadsheet saved 1
Excel VBA 1
Autosum 2
function for search 2
Help: SearchAndGet a value Help 1

Top