Clay Icon

Data Transformations: Union Operations and Pivots in Clay Lists

Β·
Β·

Hi guys, I have a question about doing data transformations. Do clay lists support doing union operations on several sheets with the same column headers to create one big list? What about doing pivots or creating new rows from comma seperated values in a cell?

  • Avatar of Jack C.
    Jack C.
    Β·
    Β·

    Sadly not, best way around this is, in a common table import a unique identifier, then using that look up from your "Dim" tables. Then you have all the info from your tables and can pick and choose the headers you want.

  • Avatar of Jack C.
    Jack C.
    Β·
    Β·

    If you have CSV items you can break them out into separate columns with a function and then right those to a new table as rows. But its painfully manual and limited by your columns capacity

  • Avatar of Alex N.
    Alex N.
    Β·
    Β·

    Ah word, I have an idea for a workaround, but thanks!