I want to create a formula that will look through several cell arrays to determine if a cell (one or more) have a value greater than 0. If so, the return a true condition.
Here is the formula I have tried
=IF(COUNTIF(TST_RANGE,">0"),1,0) (doesn't work)
TST_RANGE is a named cell range and is defined as
=Chart1!$L$5:$L$9,Chart1!$N$5:$N$9
The formula is operating on cell arrays that are not contiguous.
The formula works OK if TST_RANGE is defined as with contiguous columns.
My data is in non-contiguous columns so I need to scan the first array, skip several columns, scan the next array, skip columns, so on and so forth.
Here is the formula I have tried
=IF(COUNTIF(TST_RANGE,">0"),1,0) (doesn't work)
TST_RANGE is a named cell range and is defined as
=Chart1!$L$5:$L$9,Chart1!$N$5:$N$9
The formula is operating on cell arrays that are not contiguous.
The formula works OK if TST_RANGE is defined as with contiguous columns.
My data is in non-contiguous columns so I need to scan the first array, skip several columns, scan the next array, skip columns, so on and so forth.