I’ve seen many answers to this questions on the internet (and on stackoverflow) something is not working when I try the solution that everyone seems to suggest.
Basically I have a list of values (say in row 24, column C to U), and I’d like to create a (range) formula in row 25, that would give me the distinct values of the values in the range C24:U24.
I used the formula below
=INDEX($C$24:$U24,MATCH(0,COUNTIF($B$25:B25,$C$24:$U$24),0))
It is not working, it is just returning the 1st item of the list.
You still have to copy-paste the formula in several cells. In your example,
$B$25would be the first cell (because of this part of the formula:$B$25:B25). When you drag this formula down, it will check if the value is already in$B$25:B26and so on.