Forum Discussion
Stephen_Marr
Mar 16, 2022Copper Contributor
Spill error
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,Maste...
- Mar 16, 2022
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.
HansVogelaar
Mar 16, 2022MVP
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.
Stephen_Marr
Mar 16, 2022Copper Contributor
Thank you so much, appreciate you