Re: adding cells within an array
- From: "Bob Phillips" <bob.NGs@xxxxxxxxxxxxx>
- Date: Sat, 26 Aug 2006 09:53:58 +0100
It is not testing the column to be zero, but rather each and every cell in
$A$1:A1 to be 0. For each that is, it returns the row number of that
particular cell. This is so that I can build an array of 0 row numbers wand
extract the last one by using MAX. I then use that as part of the cells to
SUM.
By the way, $A$1:A1 may seem nonsense, why not just say A1, but in the
second line the formula changes to $A$1:A2, etc.
--
HTH
Bob Phillips
(replace somewhere in email address with gmail if mailing direct)
"beecher" <beecher@xxxxxxxxxxxxxxxxxxxxxxxxx> wrote in message
news:3C091820-CB1D-4B1A-ABEB-78DFE9FB79FF@xxxxxxxxxxxxxxxx
Hey Bob,needed.
Thanks for the excel doc. It was really helpful and exactly what I
I'm now just trying to understand the formula. What does the part of thethat
formula that reads IF($A$1:A1=0, Row($A$1:A1)) mean? I think it means
if the column A1 through the adjacent cell is equal to zero, then returnthe
row number in the column corresponding to the reference. But, what doesit
mean for a column to be equal to zero and how does the program determinethe
row number of the reference? Thank you for your patience with someone notWhen I
used to working in excel.
"Bob Phillips" wrote:
Take a look at
http://cjoint.com/?izblt21fQ5
--
HTH
Bob Phillips
(replace somewhere in email address with gmail if mailing direct)
"beecher" <beecher@xxxxxxxxxxxxxxxxxxxxxxxxx> wrote in message
news:8249C5BC-77BC-4973-8532-45140003EF51@xxxxxxxxxxxxxxxx
Thanks for the help fellas. I'm still having some trouble though.
ortried Bob's formula I only got blank cells. When I tried Bernard'sformula,
I received a column of zeroes instead of the sums of each group.
Maybe I should clarify the situation. Each of the numbers (0 or 1.2
Within1.3
etc.) are in a column. There are around 1400 cells in the column.
numbers.each column there are alternating strings of zeroes and non-zero
1.3,For instance, part of the column A1:A20 could read like this 0, 0, 0,
call1.2, 1.3, 1.3, 1.3, 1.3, 1.3, 0, 0, 0, 0, 0, 0, 1.1, 1.8, 1.5, 0. I
=IF(ISERROR(B2-SUM($B$1:B1)),"",B2-SUM($B$1:B1))each string of non-zero numbers groups. Would you happen to know aformula
that provides the sum for each individual groups in the column?column
"Bernard Liengme" wrote:
Not very fancy but here goes.
Assuming you data is in A1:A(whatever)
In B1 enter =IF(AND(A1<>0,A2=0),SUM($A$1:A1),"") and copy down the
IN C2 (NOT C1) enter
aand
copy down the column
Hide column B if required
best wishes
--
Bernard V Liengme
www.stfx.ca/people/bliengme
remove caps from email
"beecher" <beecher@xxxxxxxxxxxxxxxxxxxxxxxxx> wrote in message
news:A11C22F9-7132-42B3-A3B6-6CC38E83F61C@xxxxxxxxxxxxxxxx
I'm trying to devise a way to add cells within an array following
is, Iset of
criteria.
I have an array with a series of zero and non-zero numbers. As an
example:
1 0
2 0
3 1.2
4 1.3
5 1.4
6 0
7 1.1
8 1.8
9 0
10 0
I want to add all the numbers that are between the zeroes. That
thatwould
like to have two separate values in the above example: one value
becauseis
the
sum of 1.2, 1.3, and 1.4 and a second value that equals the sum of
1.1+1.8.
I could manually go through the array and add each sum, but
helpthere
calculation Iare
nearly 40 sums in each array and multiple arrays to do this
would like to find a function to perform this task for me. Any
would
be
much appreciated.
.
- Follow-Ups:
- Re: adding cells within an array
- From: beecher
- Re: adding cells within an array
- References:
- Re: adding cells within an array
- From: Bernard Liengme
- Re: adding cells within an array
- From: Bob Phillips
- Re: adding cells within an array
- From: beecher
- Re: adding cells within an array
- Prev by Date: Re: identify nested parentheses
- Next by Date: Re: WITH SORTED LIST. Ignoring Blank value in a drop down list.
- Previous by thread: Re: adding cells within an array
- Next by thread: Re: adding cells within an array
- Index(es):
Relevant Pages
|