D
dranon
I've been banging my head against the wall on this and can't seem to
snuff out the right combination. If anybody can help, I would be most
appreciative.
I have a series of numbers in columns 1 through 10.
I want to have another 10 columns that list the running maximums, with
a twist.
In column 11, I will repeat column 1.
In column 12, I want the maximum of column 1 or column 2.
In column 13, I want the maximum of columns 1, 2 or 3.
etc.
In column 20, I want the maximum of columns 1 through 10.
With one twist.
I only want to use the number from the first 10 columns if a
**corresponding** number (in a helper column) satisfies a specific
criteria.
For this purpose, I have 10 helper columns, 21 through 30.
Let's assume that my criteria (applied to columns 21 through 30) is
that the number must be 1000 or more.
For example, in column 15, I would want:
=Max(if(column 21>=1000,column 1,0),
if(column 22>=1000,column 2,0),
if(column 23>=1000,column 3,0),
if(column 24>=1000,column 4,0),
if(column 25>=1000,column 5,0))
I have left off the row identifiers since the information is
irrelevant.
If anybody can point me in the right direction I would be much
obliged.
Thanks
snuff out the right combination. If anybody can help, I would be most
appreciative.
I have a series of numbers in columns 1 through 10.
I want to have another 10 columns that list the running maximums, with
a twist.
In column 11, I will repeat column 1.
In column 12, I want the maximum of column 1 or column 2.
In column 13, I want the maximum of columns 1, 2 or 3.
etc.
In column 20, I want the maximum of columns 1 through 10.
With one twist.
I only want to use the number from the first 10 columns if a
**corresponding** number (in a helper column) satisfies a specific
criteria.
For this purpose, I have 10 helper columns, 21 through 30.
Let's assume that my criteria (applied to columns 21 through 30) is
that the number must be 1000 or more.
For example, in column 15, I would want:
=Max(if(column 21>=1000,column 1,0),
if(column 22>=1000,column 2,0),
if(column 23>=1000,column 3,0),
if(column 24>=1000,column 4,0),
if(column 25>=1000,column 5,0))
I have left off the row identifiers since the information is
irrelevant.
If anybody can point me in the right direction I would be much
obliged.
Thanks