I tried searching for this, but no luck…
Here goes:
I’m trying to find the Nth occurrence of an item, rather than the first only. I can do it ok if all items are sorted, but not if they’re not.
For example:
Jones Eggs Jones Bacon Jones Toast Smith Toast Smith Ham
This works fine for me as such. I can get the count of the Jones records or the Smith records, etc. I can also pull out each column B value based on knowing which column A item I’m looking for (If, that is, they are sorted by column A). But, if I add another “Jones” line at the end, I can’t get to it’s value without first sorting by column A, which I don’t want to do given the particular worksheet I’m on. If I could find the Nth occurrence of “Jones”, that would work perfectly.
I’m trying to accomplish this WITHOUT using vba, with a formula only. Any ideas?
Thanks,