basically it needs to find a specific match within the 'c' column to the
value in the A column. Then look directly underneath the row that the 'C'
column value is located for a specified number of cells, designated by a
value in the 'f' column and if there is a match between the B32708 value to a
value that is within a specific range of the location where the match to
A32710 was found, (since there are about 40000 rows there will be many
matches to the b32708 values, but I need to just know if it is just in that
specified limited location), it would return a value and if not I will get
the standard N/A.
Here is what the formula looks like
=match(B32708,(ADDRESS(MATCH(A32710,C:C,0),1))

ADDRESS(MATCH(A32710,C:C,0)+INDIRECT(ADDRESS(MATCH(A32710,C:C,0),6)),1)),0)
I have tried the =(ADDRESS(MATCH(A32710,C:C,0),1)) and I got $A$27004, which
is correct and I tried
=(ADDRESS(MATCH(A32710,C:C,0)+INDIRECT(ADDRESS(MATCH(A32710,C:C,0),6)),1))
and I got $A$27015, which is also correct
I thin tried =match(B32708,$A$27004:$A$27004,0) and I got 3, which is also
the correct answer.
This is the reason that I believe that there is a problem nesting the
address function into another.
Is there another way to get my desired result?