tezza
Active Member
- Joined
- Sep 10, 2006
- Messages
- 384
- Office Version
- 2016
- 2010
- Platform
- Windows
- Web
Hi all
I'm currently using the following formula in col c:
Col A has names which can have duplicates.
Col C needs to look for the name in column A then show the value (in this example Battles!E3:F100) of col F, but when it currently hits a duplicate name it always shows the first value match in Col F.
How do I adjust it so that if the name in Col A is the 2nd, 3rd, 4th etc occurrence then Col C shows the respective matching value in Col F?
Regards
I'm currently using the following formula in col c:
Code:
=IF(A1="",0,IF(COUNTIF(Battles!$E$3:$F$100,A1),VLOOKUP(A1,Battles!$E$3:$F$100,2,0),0))
Col A has names which can have duplicates.
Col C needs to look for the name in column A then show the value (in this example Battles!E3:F100) of col F, but when it currently hits a duplicate name it always shows the first value match in Col F.
How do I adjust it so that if the name in Col A is the 2nd, 3rd, 4th etc occurrence then Col C shows the respective matching value in Col F?
Regards