Suppose I have 5 names.
Alex
Becky
Cedric
Darlene
Eric
Suppose each of these folks have an order that I have to deliver to and some are VIP's. For example, Darlene will always get her package first before Alex.
1 Darlene
2 Cedric
3 Alex
4 Eric
5 Becky
What I am looking for is a formula that will look at the list of names and perform logic such that if the primary name is present in the list, it will return that name. If that name is not on the list, it will return the next name.
So if the list of names were
Alex
Eric
Eric
Eric [he has multiple deliveries, let's say]
Darlene
The formula would come back with "Darlene".
Bookmarks