Excel: Get cell address of a intersection.

Copper Contributor

I have a value in a row and a value in column.

Eg:

         

 

 JanFebMarApr
Region1100200300400
Region2100200300400
Region3100200300400

I need to get cell address of the intersections.

 

Eg:   Region3->Mar 

 

output: D4

 

How can i achieve this? 

Address :  D4

1 Reply

Hi,

 

You can do this using this formula:

=ADDRESS(MATCH(G2,A:A,0),MATCH(H2,1:1,0),4)

GetCellAddress.png 

Please find it in the atttached file.

Regards