I have a 2D array (Table) as you may see in the image.
I want to delete all repeated rows except two, i want to leave one row with 123QSD and all the remaining columns and the 344MX and all the remaing columns.
Hi ethan85, so you want to remove all the duplicate entries from the first coulmn, but you want to delete the complete row, right? In this case index the first column and search for duplicate entries and remove them, or you can also write the not duplicate entries into a new 2D array.