I'm trying to remove the unique values after joining cells in Excel. It's a list of phone numbers that I combine into a single cell after I separate them with a comma. I'm using this formula:
=SUBSTITUTE(TEXTJOIN(",",TRUE,$I$19:$I$28),I19&",","")
For whatever reason, it properly applies to every cell in the range except for the last one; meaning that the last phone number still shows up in the final list. So for example, if I have numbers 12345 23456 34567 and 45678
, it should come out like this:
23456,34567,45678
12345,34567,45678
12345,23456,45678
12345,23456,34567
but it comes out like this
23456,34567,45678
12345,34567,45678
12345,23456,45678
12345,23456,34567,45678
Any ideas why this might be happening?