I need a formula so that I can collapse a table based on the value in one of the columns. Essentially, in one column there are a load of numbers, which are sometimes repeated, and what I want is to make it so that all the data is condensed so that just one of each number is shown. For example:
Gene.Symbol queryHits
MTND1P23 1
MTND2P28 2
MTND2P28 3
MTND2P28 3
MTND2P28 3
I'd like to collapse this so that the data was amalgamated as:
Gene.Symbol queryHits
MTND1P23 1
MTND2P28 2
MTND2P28 3
Solved by G. Q. in 25 mins