IFERROR() returning previous with VLOOKUP instead of designated value
In an additional table I want sum the counts for each repeated index value across the 4 tables.
Originally in my table containing the summation I had:
=SUM(IFERROR(VLOOKUP(A2, TABLE1 :: $A$2:$B$31,2),0),IFERROR(VLOOKUP(A2, TABLE2 :: $A$2:$B$31,2),0),IFERROR(VLOOKUP(A2, TABLE3 :: $A$2:$B$31,2),0)... hopefully you get the picture.
I then drug this through all the cells in the column, but my totals were off.
So I separated it out with each IFERROR() statement in a separate column, to try and detect the error. But when I drug the formula through each column I was getting the previous VLOOKUP() value instead of the value I designated in the IFERROR() function.
I tried using the following: =IF(ISERROR(VLOOKUP(A2, TABLE1 :: $A$2:$B$31,2)),0,VLOOKUP(A2, TABLE1 :: $A$2:$B$31,2)), but this had the same problem.
Let me know if you need further information. Any suggestions?
Message was edited by: NateDil
MacBook Pro i5, Mac OS X (10.6.4)