Search code examples
google-sheetsgoogle-sheets-formulatransposearray-formulasgoogle-sheets-query

Copy column A3:A9-E3:A9: to A,C,E,G, I in an other sheet


Is it possible to copy from column A3:A9-E3:A9: and then target them to A,C,E,G,I in an other sheet?

Example


Solution

  • use this formula:

    =ARRAYFORMULA(SPLIT(TRANSPOSE(QUERY(TRANSPOSE("♦"&A3:E9&"♦");;999^99)); "♦"))
    

    then copy with CTRL+C and re-paste/paste over with CTRL+SHIFT+V

    0