Re: $$Excel-Macros$$ Arithmetic with blank cells

2010-08-02 Thread George Barrowcliff
rand can't seem to handle > non-numeric inputs, whereas the SUM function has a built-in ability to > ignore them. > Regards - Dave. > > ------ > Date: Sat, 31 Jul 2010 22:42:34 -0700 > Subject: Re: $$Excel-Macros$$ Arithmetic with blank cells > > Fro

RE: $$Excel-Macros$$ Arithmetic with blank cells

2010-08-01 Thread Dave Bonallack
, 31 Jul 2010 22:42:34 -0700 Subject: Re: $$Excel-Macros$$ Arithmetic with blank cells From: irvinep...@gmail.com To: excel-macros@googlegroups.com OK, here is an example: The whole idea is to prevent a data entry spreadsheet having a bunch of zeroes in all the totalizing columns. Cells K1,L1 and K2,L

Re: $$Excel-Macros$$ Arithmetic with blank cells

2010-07-31 Thread Shujaat Ali
Woopss... Sorry for in-complete formula: keep the formula as =if(C1="",0,C1) regards, On Sun, Aug 1, 2010 at 8:39 AM, Shujaat Ali wrote: > Hey, > > soemthing i would use, simple and easy, if its fits :) > > simply take another (any) column with the formula of Val , for example: > > C1

Re: $$Excel-Macros$$ Arithmetic with blank cells

2010-07-31 Thread George Barrowcliff
OK, here is an example: The whole idea is to prevent a data entry spreadsheet having a bunch of zeroes in all the totalizing columns. Cells K1,L1 and K2,L2 have been "Clear Contents", Cell M3 the totalizer cell is blank. Put a 1 in K1 and the #Value error appears in M3 Cell M1: =

Re: $$Excel-Macros$$ Arithmetic with blank cells

2010-07-31 Thread Shujaat Ali
Hey, soemthing i would use, simple and easy, if its fits :) simply take another (any) column with the formula of Val , for example: C1D1 10 =val(C1) =val(C2) and so on. and simply take the sum of Column D. hope it helps. Best regards, M. Shujaat Ali Fu

Re: $$Excel-Macros$$ Arithmetic with blank cells

2010-07-31 Thread vidyut more
if u try to uncheck zero values from tools option zero value On Sat, Jul 31, 2010 at 2:02 PM, zp18 wrote: > I have a bunch of cells that may or may not have numbers in them. > > Kind of like this: Sum(e35:e44) , but with no number in e44, I get the > #Value error.  What should be in a "empty" cel

RE: $$Excel-Macros$$ Arithmetic with blank cells

2010-07-31 Thread Dave Bonallack
gt; Date: Sat, 31 Jul 2010 01:32:16 -0700 > Subject: $$Excel-Macros$$ Arithmetic with blank cells > From: irvinep...@gmail.com > To: excel-macros@googlegroups.com > > I have a bunch of cells that may or may not have numbers in them. > > Kind of like this: Sum(e35:e44) , bu

$$Excel-Macros$$ Arithmetic with blank cells

2010-07-31 Thread zp18
I have a bunch of cells that may or may not have numbers in them. Kind of like this: Sum(e35:e44) , but with no number in e44, I get the #Value error. What should be in a "empty" cell that would allow excel to treat it as zero but not have a bunch of zeroes all over the worksheet? Isnumber() wo