View Single Post
  #2   Report Post  
Biff
 
Posts: n/a
Default Using Excel as a Gradebook:Calculating sum excluding blanks and ze

Hi!

I would like to total the values


That means you want to add together or sum, correct?

If so, the SUM function ignores blank cells and text entries, and any cells
containing 0's will have no effect on a sum. So, you can probably just use
something like this:

=SUM(A1:D100)

Biff

"morgan.lintz" wrote in message
...
I am attempting to use Excel as a gradebook and I would like to total the
values of a series of columns where the values are not blank and are
greater
than 0.
Should I test each value in a range for blank or 0?
If so, how would I go about doing that?
I have basic programming skills based out of Java (very elementary), and
would like to understand what I am doing. So if you reply, could you
please
explain?