Hi,
I have to reconcile two sheets within a workbook. There should be a common reference on most cells in column A, so i use the below formula to lookup and match to return my answer, where there isn't a common reference the returnng #N/A value tells me I need to investigate why. The below array formula works ok but is slow as there are around 8000 rows. Is there a faster way to replace the below using vba?
Thanks in advance
Blunder
I have to reconcile two sheets within a workbook. There should be a common reference on most cells in column A, so i use the below formula to lookup and match to return my answer, where there isn't a common reference the returnng #N/A value tells me I need to investigate why. The below array formula works ok but is slow as there are around 8000 rows. Is there a faster way to replace the below using vba?
Thanks in advance
Blunder
Code:
{=INDEX(ODS!$A$2:$A$37,MATCH(1,(ODS!$A$2:$A$37=NTPA!A2)*(ODS!$N$2:$N$37=NTPA!M2)*(ODS!$O$2:$O$37=NTPA!N2),0))}