In my "total" column I don't want the results of the SUM to show up if there
is not an entry in the cell to the left of the SUM cell.
--
MPS

Re: Making formula results not visible in a cell by David

David
Wed May 07 16:07:15 CDT 2008

=IF(A101="","",SUM(B1:B100))
--
David Biddulph

"mp smith" <mpsmith@discussions.microsoft.com> wrote in message
news:DBF1B732-11E4-4C01-B016-E401D9C31A63@microsoft.com...
> In my "total" column I don't want the results of the SUM to show up if
> there
> is not an entry in the cell to the left of the SUM cell.
> --
> MPS



Re: Making formula results not visible in a cell by T

T
Wed May 07 16:08:25 CDT 2008

Try something like this:

=IF(A10="","",SUM(.....))

--
Biff
Microsoft Excel MVP


"mp smith" <mpsmith@discussions.microsoft.com> wrote in message
news:DBF1B732-11E4-4C01-B016-E401D9C31A63@microsoft.com...
> In my "total" column I don't want the results of the SUM to show up if
> there
> is not an entry in the cell to the left of the SUM cell.
> --
> MPS