G
Guest
Guest
I did a poor job of explaining my issue on a previous post, so let me try again...
- I've got a series of data in 9 columns.
- Any or all of the columns could be empty
- If any cells have data in them, the data will be a numberic value (could be positive or negative)
- Any data in the cells must be greater than any values in an cells to the left of them.
Examples:
This data would be OK.
A1=1
B1=2
C1=3
D1=4
E1=5
F1=6
G1=7
H1=8
I1=9
This data would also be OK (note that I've used "null" to indicate an empty cell
A1=1
B1=null
C1=null
D1=null
E1=null
F1=2
G1=null
H1=null
I1=9
This data would not be OK because the data in A1 is greater than the data in F1.
A1=1
B1=null
C1=null
D1=null
E1=null
F1=0
G1=6
H1=9
I1=11
This data would not be OK because the data in B1 equals A1 (it needs to be greater than, not greater than or equal to).
A1=1
B1=1
C1=3
D1=4
E1=5
F1=6
G1=7
H1=8
I1=9
Any help would be appreciated.
Scot Jonas
jonas.sb@pg.com
- I've got a series of data in 9 columns.
- Any or all of the columns could be empty
- If any cells have data in them, the data will be a numberic value (could be positive or negative)
- Any data in the cells must be greater than any values in an cells to the left of them.
Examples:
This data would be OK.
A1=1
B1=2
C1=3
D1=4
E1=5
F1=6
G1=7
H1=8
I1=9
This data would also be OK (note that I've used "null" to indicate an empty cell
A1=1
B1=null
C1=null
D1=null
E1=null
F1=2
G1=null
H1=null
I1=9
This data would not be OK because the data in A1 is greater than the data in F1.
A1=1
B1=null
C1=null
D1=null
E1=null
F1=0
G1=6
H1=9
I1=11
This data would not be OK because the data in B1 equals A1 (it needs to be greater than, not greater than or equal to).
A1=1
B1=1
C1=3
D1=4
E1=5
F1=6
G1=7
H1=8
I1=9
Any help would be appreciated.
Scot Jonas
jonas.sb@pg.com