Mar 16 2022 04:53 AM
Hi
I have been using this formula for years and it worked perfectly since upgrading to 356 I am now getting a spill error -
=IFERROR(INDEX(Master!$B$2:$B$18623,MATCH('Inv-WH'!$A$2:$A$9346,Master!$A$2:$A$18623,0)),"")
This helps me to fetch info from a specific column and return the info correctly
Mar 16 2022 05:04 AM
Solution@Stephen_Marr Because of 'Inv-WH'!$A$2:$A$9346, as first argument in MATCH, the formula returns 9345 rows. Perhaps use
=IFERROR(INDEX(Master!$B$2:$B$18623,MATCH('Inv-WH'!$A2,Master!$A$2:$A$18623,0)),"")
and fill down.
Mar 16 2022 05:04 AM
Solution@Stephen_Marr Because of 'Inv-WH'!$A$2:$A$9346, as first argument in MATCH, the formula returns 9345 rows. Perhaps use
=IFERROR(INDEX(Master!$B$2:$B$18623,MATCH('Inv-WH'!$A2,Master!$A$2:$A$18623,0)),"")
and fill down.