If I have two tables, table A (1st table) and Table B (2nd table), and I want to find rows where the ID columns match but either the currency or amount don’t match….how would I do this?I can find where the IDs exist in both tables (col J) by:
=IF(ISNA(INDEX($A:$A,MATCH($F:<wbr>$F,$A:$A,0)))=FALSE,$F:$F,"")
Then if J is not "":
=IF($J:$J<>"",1,0)
So J tells me there is a match but I need to replace 1 somehow to say: if value exists in both, find all rows where it exists and put it into a new table. I would also need to be able to tell if the row came from table A or table B. Any Ideas?
=IF(ISNA(INDEX($A:$A,MATCH($F:<wbr>$F,$A:$A,0)))=FALSE,$F:$F,"")
Then if J is not "":
=IF($J:$J<>"",1,0)
So J tells me there is a match but I need to replace 1 somehow to say: if value exists in both, find all rows where it exists and put it into a new table. I would also need to be able to tell if the row came from table A or table B. Any Ideas?