How would I write this as a formula?

P

Peter McCaul

IF Sum of (O104:p104)*100 is greater than 0, then give me the answer to the
equation, otherwise leave the cell blank.

Any help is appreciated.

Thanks.
 
D

Dave Peterson

=if(sum(o104:p104)<=0,"",sum(o104:p104)*100)

(The cell looks empty, but contains the formula.)
 
Top