#REF!

  • Thread starter Thread starter Curtis
  • Start date Start date
C

Curtis

Why is this giving me #REF! error

=INDEX('(312) - POS Pricelist'!$E$5:$E$8148,MATCH('Store Price
List'!$A4,'(312) - POS Pricelist'!$A$5:$A$8148,0),MATCH('Store Price
List'!D$2,'(312) - POS Pricelist'!$C$5:$C$8148,0))

thanks
 
You are calling out both a row number and column number in an array that
only has one column!
Either increase the INDEX array to include multiple columns, or remove the
second MATCH function.
 
Back
Top