mwscarponi
New Member
- Joined
- Mar 25, 2018
- Messages
- 7
I am currently generating a distinct list from a list with duplicates using:
=IFERROR(INDEX(C15:C50, MATCH(0, INDEX(COUNTIF(D50:D50, C15:C50), 0, 0), 0)), "")
However, when the source list changes, the entries of the distinct list will (potentially) reorder. This is messing up another purpose of the worksheet. Is there a way to "lock in" the cells of the distinct list as they propagate?
EXAMPLE:
If my source list is:
Orange
Red
Orange
My distinct list is:
Orange
Red
But if the source list changes to:
Blue
Blue
Orange
Red
Orange
The distinct list will be:
Blue
Orange
Red
But this changes Orange and Red from the 1st and 2nd cells in the list to the 2nd and 3rd. I need them to stay where they originate, and for the new entry (Blue) to be added at the end of the distinct list.
Thanks!
=IFERROR(INDEX(C15:C50, MATCH(0, INDEX(COUNTIF(D50:D50, C15:C50), 0, 0), 0)), "")
However, when the source list changes, the entries of the distinct list will (potentially) reorder. This is messing up another purpose of the worksheet. Is there a way to "lock in" the cells of the distinct list as they propagate?
EXAMPLE:
If my source list is:
Orange
Red
Orange
My distinct list is:
Orange
Red
But if the source list changes to:
Blue
Blue
Orange
Red
Orange
The distinct list will be:
Blue
Orange
Red
But this changes Orange and Red from the 1st and 2nd cells in the list to the 2nd and 3rd. I need them to stay where they originate, and for the new entry (Blue) to be added at the end of the distinct list.
Thanks!