You can try something like this:
=COUNTIF(INDEX(A1:E8,,5),"Test")
Where 5 refers to the column number of the range to count. In this case
column 5 is the range E1:E8. If you want to count A1:A8 then use column
number 1. The column number is RELATIVE to the indexed range.
To give it more flexibility you can use a cell to hold the column number and
then refer to that cell:
G1 = 5
=COUNTIF(INDEX(A1:E8,,G1),"Test")
If G1 is empty then the entire range, A1:E8, will be calculated.
Biff
> Not sure if this is possible but have named cells a1:a8 named as test01
>
[quoted text clipped - 16 lines]
>
> Damien