I am comparing two different worksheet columns and if SSN from worksheet AM-FID is not found on worksheet AM-IBX and the person is identified as "active assignment" in column I on worksheet AM-FID then...
I want to either highlight it (which i tried with conditional formatting and wouldn't work across worksheets) or have a column for True/False or have it bring that Row that doesn't have a SSN on both sheets and doesn't have active assignment to AM-differences worksheet
I got a matching formula working
=ISNA(MATCH(D3,'AM-IBX'!$C$2:$C$110,0))
it identified if the item wasn't on the other sheet with a true/false, but i couldn't add a condition that if column I = "active assignment" vs terminated then bring the data to a different worksheet from that row or, even identify it as true....
I tried this as well but it didn't work.
=INDEX('AM-IBX'!$C$2:$C$110,MATCH(D3,IF('AM-FID'!$I$3:$I$181="active assignment",TRUE),0))
I want to either highlight it (which i tried with conditional formatting and wouldn't work across worksheets) or have a column for True/False or have it bring that Row that doesn't have a SSN on both sheets and doesn't have active assignment to AM-differences worksheet
I got a matching formula working
=ISNA(MATCH(D3,'AM-IBX'!$C$2:$C$110,0))
it identified if the item wasn't on the other sheet with a true/false, but i couldn't add a condition that if column I = "active assignment" vs terminated then bring the data to a different worksheet from that row or, even identify it as true....
I tried this as well but it didn't work.
=INDEX('AM-IBX'!$C$2:$C$110,MATCH(D3,IF('AM-FID'!$I$3:$I$181="active assignment",TRUE),0))