Great, thanks all. That worked. I have one error in my own logic, however.
I want the Balance Due cell (P2) to calculate if ANY ONE OR MORE of the
cells J2 through O2 have amounts entered in them. Right now, the way I wrote
the logic, it will only calculate of ALL cells (J2 thru O2) have amounts in
them.
Sorry ... how would I change the formula?
Thanks again,
Rosemary
> =IF(J2:O2="","",I2-SUM(J2:O2))
>
[quoted text clipped - 29 lines]
> >
> > Thanks!
PapaDos - 20 Oct 2006 04:38 GMT
=IF( SUMPRODUCT( LEN( J2:O2 ) ) = 0, "", I2 - SUM( J2:O2 ) )

Signature
Regards,
Luc.
"Festina Lente"
> Great, thanks all. That worked. I have one error in my own logic, however.
>
[quoted text clipped - 41 lines]
> > >
> > > Thanks!
Roger Govier - 20 Oct 2006 09:50 GMT
Hi Rosemary
Isn't it simply
=IF(COUNT(J2:O)=0,"",I2-SUM(J2:O2))

Signature
Regards
Roger Govier
> Great, thanks all. That worked. I have one error in my own logic,
> however.
[quoted text clipped - 48 lines]
>> >
>> > Thanks!