Row formula help please

P

piggin76

Hi, I need a formula that will add all figures in a row except zero or blank
cells and then minus that figure from another cell figure - does anyone know
how to do that please? thanks
 
R

Ron Rosenfeld

Hi, I need a formula that will add all figures in a row except zero or blank
cells and then minus that figure from another cell figure - does anyone know
how to do that please? thanks


=a2-row(1:1)


--ron
 
P

piggin76

Thanks Ron, but that just minuses the row number from the cell figure rather
than adding the row contents together then minusing it from the cell figure
 
R

Ron Rosenfeld

Thanks Ron, but that just minuses the row number from the cell figure rather
than adding the row contents together then minusing it from the cell figure

You're correct. Typo Alert:

Should have been:

=a2-sum(row(1:1))



--ron
 
Top