As the title reads, I am using google sheets and have MULTIPLE data (columns) ranges of varying sizes (different row counts). The goal is to combine the data into a single dataset AND only show items that are "duplicated"
This is my data (sample), from EVE Echoes:
------Dataset 1------------A-----|-----B----Asteroid Yield-----------|----------Jaspet-----|-1,033.00Gneiss-----|---455.00Arkonor----|---300.00Kernite----|---216.00Spodumain--|---178.00Pyroxeres--|---113.00Plagiocase-|----43.65------Dataset 2------------X-----|-----Y----Asteroid Yield-----------|----------Hedbergite-|---193.00Gneiss-----|---91.08Hemorphite-|---79.20Spodumain--|---29.70Dark Ochre-|---25.20Omber------|---24.75Kernite----|---21.60------Dataset 3------------O-----|-----P----Asteroid Yield-----------|----------Crokite----|---39.48Jaspet-----|---20.16Dark Ochre-|---19.35Pyroxeres--|---13.50Hemorphite-|----6.43Hedbergite-|----3.70
In the data (sample) above, I am only providing 3 different datasets, but keep in mind that there is no "same row-count" EVER. Nor there's a "same dataset count"; could be 3 data sets (like in this sample), only one, or hundred's of data sets.
Comparing datasets, the desired outcome should be these values with duplicates:
------------------------|-Data with duplicates-|------------------------Dark OchreGneissHedbergiteHemorphiteJaspetKernitePyroxeresSpodumain
Already tried a number of approaches, all failed. Tried using FILTER():
=FILTER({A:A; X:X; O:O}, COUNTIFS({A:A; X:X; O:O}, UNIQUE({A:A; X:X; O:O})>1))
Query didn't help either:
=QUERY({A:A; X:X; O:O}, "SELECT Col1 WHERE Col1 IS NOT NULL AND COUNT(Col1)>1 GROUP BY Col1")
Anything I have tried results in errors. There's also the problem of headers and empty cells