RobMMiller
New Member
- Joined
- Sep 18, 2017
- Messages
- 4
Hi,
I was wondering if you can help. I have a list of words on a tab called TabellePositionHistory in Column D. I want to reproduce this list on another tab if the content of column F and G on the same row are greater than 0. The below formula does this perfectly:
However, I now need to make sure that it doesn't produce duplicates in the results, from what I can see I need to add a MATCH or COUNTIF function...but don't know how. Thanks in advance.
Rob
I was wondering if you can help. I have a list of words on a tab called TabellePositionHistory in Column D. I want to reproduce this list on another tab if the content of column F and G on the same row are greater than 0. The below formula does this perfectly:
Code:
=(IF(ISERROR(INDEX(TabellePositionHistory!$D$1:$AB$500,SMALL(IF(TabellePositionHistory!$AB$1:$AB$500>0,ROW(TabellePositionHistory!$AB$1:$AB$500)),ROW(7:7)),1)),"",INDEX(TabellePositionHistory!$D$1:$AB$500,SMALL(IF(TabellePositionHistory!$AB$1:$AB$500>0,ROW(TabellePositionHistory!$AB$1:$AB$500)),ROW(7:7)),1)& " Equity"))
However, I now need to make sure that it doesn't produce duplicates in the results, from what I can see I need to add a MATCH or COUNTIF function...but don't know how. Thanks in advance.
Rob