Google Apps Script to VMerge tables WITH FORMATTING

后端 未结 3 657
难免孤独
难免孤独 2021-01-16 06:05

Does anyone know if there is a Google apps script out there that does what VMerge does but keeps the formatting of the tables being merged together? (in Google Spreadsheets)

3条回答
  •  無奈伤痛
    2021-01-16 06:56

    I find the below built in functions to work well pulling information from different Google Sheet files. I have defined named ranges to define what columns to pull into the Master, and also know I am having an issue with Feb.

    =sort(arrayformula({
    importrange("1sTS3AUfoXqXYrMYJrro9pGEKwqVL_k854yhniNOHNWc","JCJan");
    importrange("1ETSD4J-8AI-7pVK0hXJKaWtG3RlHKpnco88Yj8sqNN8","JCFeb")}),1,True)
    

提交回复
热议问题