{"id":6813,"date":"2024-01-02T14:47:15","date_gmt":"2024-01-02T14:47:15","guid":{"rendered":"https:\/\/www.garysieling.com\/blog\/?p=6813"},"modified":"2024-01-02T14:47:15","modified_gmt":"2024-01-02T14:47:15","slug":"import-a-folder-of-csvs-into-a-single-google-sheet-1-per-tab","status":"publish","type":"post","link":"https:\/\/www.garysieling.com\/blog\/import-a-folder-of-csvs-into-a-single-google-sheet-1-per-tab\/","title":{"rendered":"Import a folder of CSVs into a single Google Sheet (1 per tab)"},"content":{"rendered":"\n<p>Got this from ChatGPT and tested.<\/p>\n\n\n\n<p>Go to apps script:<\/p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img loading=\"lazy\" decoding=\"async\" width=\"343\" height=\"203\" src=\"https:\/\/www.garysieling.com\/blog\/wp-content\/uploads\/2024\/01\/image-1.png\" alt=\"\" class=\"wp-image-6814\" srcset=\"https:\/\/www.garysieling.com\/blog\/wp-content\/uploads\/2024\/01\/image-1.png 343w, https:\/\/www.garysieling.com\/blog\/wp-content\/uploads\/2024\/01\/image-1-300x178.png 300w\" sizes=\"(max-width: 343px) 100vw, 343px\" \/><\/figure>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"1303\" height=\"362\" src=\"https:\/\/www.garysieling.com\/blog\/wp-content\/uploads\/2024\/01\/image-2-1303x362.png\" alt=\"\" class=\"wp-image-6815\" srcset=\"https:\/\/www.garysieling.com\/blog\/wp-content\/uploads\/2024\/01\/image-2-1303x362.png 1303w, https:\/\/www.garysieling.com\/blog\/wp-content\/uploads\/2024\/01\/image-2-300x83.png 300w, https:\/\/www.garysieling.com\/blog\/wp-content\/uploads\/2024\/01\/image-2-768x214.png 768w, https:\/\/www.garysieling.com\/blog\/wp-content\/uploads\/2024\/01\/image-2.png 1330w\" sizes=\"(max-width: 767px) 89vw, (max-width: 1000px) 54vw, (max-width: 1071px) 543px, 580px\" \/><\/figure>\n\n\n\n<p>Paste the script below, add your folder ID, and save. The folder ID can be obtained from the URL to the folder:<\/p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"1303\" height=\"591\" src=\"https:\/\/www.garysieling.com\/blog\/wp-content\/uploads\/2024\/01\/image-3-1303x591.png\" alt=\"\" class=\"wp-image-6816\" srcset=\"https:\/\/www.garysieling.com\/blog\/wp-content\/uploads\/2024\/01\/image-3-1303x591.png 1303w, https:\/\/www.garysieling.com\/blog\/wp-content\/uploads\/2024\/01\/image-3-300x136.png 300w, https:\/\/www.garysieling.com\/blog\/wp-content\/uploads\/2024\/01\/image-3-768x348.png 768w, https:\/\/www.garysieling.com\/blog\/wp-content\/uploads\/2024\/01\/image-3.png 1327w\" sizes=\"(max-width: 767px) 89vw, (max-width: 1000px) 54vw, (max-width: 1071px) 543px, 580px\" \/><\/figure>\n\n\n\n<p>Then, click Run &#8211; you will have to go through several security prompts to agree to trust the script.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>function importCSVFiles() {\n  var folderId = '1_ZVuufw69Ns9ZeOCdxWwN0GqJrSl9YgO';\n  var sheet = SpreadsheetApp.getActiveSpreadsheet();\n  var folder = DriveApp.getFolderById(folderId);\n  var files = folder.getFiles();\n\n  while (files.hasNext()) {\n    var file = files.next();\n    var csvData = Utilities.parseCsv(file.getBlob().getDataAsString());\n    var sheetName = file.getName().replace(\/\\.csv$\/, ''); \/\/ Remove '.csv' from the sheet name\n    var existingSheet = sheet.getSheetByName(sheetName);\n\n    if (existingSheet) {\n      existingSheet.clear(); \/\/ Clear existing sheet content\n    } else {\n      sheet.insertSheet(sheetName); \/\/ Create a new sheet if it doesn't exist\n    }\n\n    var targetSheet = sheet.getSheetByName(sheetName);\n    targetSheet.getRange(1, 1, csvData.length, csvData&#91;0].length).setValues(csvData);\n  }\n}<\/code><\/pre>\n","protected":false},"excerpt":{"rendered":"<p>Got this from ChatGPT and tested. Go to apps script: Paste the script below, add your folder ID, and save. The folder ID can be obtained from the URL to the folder: Then, click Run &#8211; you will have to go through several security prompts to agree to trust the script.<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"om_disable_all_campaigns":false,"_monsterinsights_skip_tracking":false,"_monsterinsights_sitenote_active":false,"_monsterinsights_sitenote_note":"","_monsterinsights_sitenote_category":0,"footnotes":""},"categories":[6],"tags":[],"aioseo_notices":[],"aioseo_head":"\n\t\t<!-- All in One SEO 4.9.9 - aioseo.com -->\n\t<meta name=\"description\" content=\"Got this from ChatGPT and tested. Go to apps script: Paste the script below, add your folder ID, and save. The folder ID can be obtained from the URL to the folder: Then, click Run - you will have to go through several security prompts to agree to trust the script. function importCSVFiles() { var\" \/>\n\t<meta name=\"robots\" content=\"max-image-preview:large\" \/>\n\t<meta name=\"author\" content=\"gary\"\/>\n\t<link rel=\"canonical\" href=\"https:\/\/www.garysieling.com\/blog\/import-a-folder-of-csvs-into-a-single-google-sheet-1-per-tab\/\" \/>\n\t<meta name=\"generator\" content=\"All in One SEO (AIOSEO) 4.9.9\" \/>\n\t\t<meta property=\"og:locale\" content=\"en_US\" \/>\n\t\t<meta property=\"og:site_name\" content=\"Gary Sieling - Software Engineer\" \/>\n\t\t<meta property=\"og:type\" content=\"article\" \/>\n\t\t<meta property=\"og:title\" content=\"Import a folder of CSVs into a single Google Sheet (1 per tab) - Gary Sieling\" \/>\n\t\t<meta property=\"og:description\" content=\"Got this from ChatGPT and tested. Go to apps script: Paste the script below, add your folder ID, and save. The folder ID can be obtained from the URL to the folder: Then, click Run - you will have to go through several security prompts to agree to trust the script. function importCSVFiles() { var\" \/>\n\t\t<meta property=\"og:url\" content=\"https:\/\/www.garysieling.com\/blog\/import-a-folder-of-csvs-into-a-single-google-sheet-1-per-tab\/\" \/>\n\t\t<meta property=\"article:published_time\" content=\"2024-01-02T14:47:15+00:00\" \/>\n\t\t<meta property=\"article:modified_time\" content=\"2024-01-02T14:47:15+00:00\" \/>\n\t\t<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n\t\t<meta name=\"twitter:title\" content=\"Import a folder of CSVs into a single Google Sheet (1 per tab) - Gary Sieling\" \/>\n\t\t<meta name=\"twitter:description\" content=\"Got this from ChatGPT and tested. Go to apps script: Paste the script below, add your folder ID, and save. The folder ID can be obtained from the URL to the folder: Then, click Run - you will have to go through several security prompts to agree to trust the script. function importCSVFiles() { var\" \/>\n\t\t<script type=\"application\/ld+json\" class=\"aioseo-schema\">\n\t\t\t{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"BlogPosting\",\"@id\":\"https:\\\/\\\/www.garysieling.com\\\/blog\\\/import-a-folder-of-csvs-into-a-single-google-sheet-1-per-tab\\\/#blogposting\",\"name\":\"Import a folder of CSVs into a single Google Sheet (1 per tab) - Gary Sieling\",\"headline\":\"Import a folder of CSVs into a single Google Sheet (1 per tab)\",\"author\":{\"@id\":\"https:\\\/\\\/www.garysieling.com\\\/blog\\\/author\\\/gary\\\/#author\"},\"publisher\":{\"@id\":\"https:\\\/\\\/www.garysieling.com\\\/blog\\\/#organization\"},\"image\":{\"@type\":\"ImageObject\",\"url\":\"https:\\\/\\\/www.garysieling.com\\\/blog\\\/wp-content\\\/uploads\\\/2024\\\/01\\\/image-1.png\",\"@id\":\"https:\\\/\\\/www.garysieling.com\\\/blog\\\/import-a-folder-of-csvs-into-a-single-google-sheet-1-per-tab\\\/#articleImage\",\"width\":343,\"height\":203},\"datePublished\":\"2024-01-02T14:47:15+00:00\",\"dateModified\":\"2024-01-02T14:47:15+00:00\",\"inLanguage\":\"en-US\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.garysieling.com\\\/blog\\\/import-a-folder-of-csvs-into-a-single-google-sheet-1-per-tab\\\/#webpage\"},\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.garysieling.com\\\/blog\\\/import-a-folder-of-csvs-into-a-single-google-sheet-1-per-tab\\\/#webpage\"},\"articleSection\":\"Data Science\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.garysieling.com\\\/blog\\\/import-a-folder-of-csvs-into-a-single-google-sheet-1-per-tab\\\/#breadcrumblist\",\"itemListElement\":[{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.garysieling.com\\\/blog#listItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.garysieling.com\\\/blog\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.garysieling.com\\\/blog\\\/category\\\/data-science\\\/#listItem\",\"name\":\"Data Science\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.garysieling.com\\\/blog\\\/category\\\/data-science\\\/#listItem\",\"position\":2,\"name\":\"Data Science\",\"item\":\"https:\\\/\\\/www.garysieling.com\\\/blog\\\/category\\\/data-science\\\/\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.garysieling.com\\\/blog\\\/import-a-folder-of-csvs-into-a-single-google-sheet-1-per-tab\\\/#listItem\",\"name\":\"Import a folder of CSVs into a single Google Sheet (1 per tab)\"},\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.garysieling.com\\\/blog#listItem\",\"name\":\"Home\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.garysieling.com\\\/blog\\\/import-a-folder-of-csvs-into-a-single-google-sheet-1-per-tab\\\/#listItem\",\"position\":3,\"name\":\"Import a folder of CSVs into a single Google Sheet (1 per tab)\",\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.garysieling.com\\\/blog\\\/category\\\/data-science\\\/#listItem\",\"name\":\"Data Science\"}}]},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/www.garysieling.com\\\/blog\\\/#organization\",\"name\":\"Gary Sieling\",\"description\":\"Software Engineer\",\"url\":\"https:\\\/\\\/www.garysieling.com\\\/blog\\\/\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.garysieling.com\\\/blog\\\/author\\\/gary\\\/#author\",\"url\":\"https:\\\/\\\/www.garysieling.com\\\/blog\\\/author\\\/gary\\\/\",\"name\":\"gary\",\"image\":{\"@type\":\"ImageObject\",\"@id\":\"https:\\\/\\\/www.garysieling.com\\\/blog\\\/import-a-folder-of-csvs-into-a-single-google-sheet-1-per-tab\\\/#authorImage\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/0be925276d848ffe98a6a9dc8cf33e67?s=96&d=identicon&r=g\",\"width\":96,\"height\":96,\"caption\":\"gary\"}},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.garysieling.com\\\/blog\\\/import-a-folder-of-csvs-into-a-single-google-sheet-1-per-tab\\\/#webpage\",\"url\":\"https:\\\/\\\/www.garysieling.com\\\/blog\\\/import-a-folder-of-csvs-into-a-single-google-sheet-1-per-tab\\\/\",\"name\":\"Import a folder of CSVs into a single Google Sheet (1 per tab) - Gary Sieling\",\"description\":\"Got this from ChatGPT and tested. Go to apps script: Paste the script below, add your folder ID, and save. The folder ID can be obtained from the URL to the folder: Then, click Run - you will have to go through several security prompts to agree to trust the script. function importCSVFiles() { var\",\"inLanguage\":\"en-US\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.garysieling.com\\\/blog\\\/#website\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.garysieling.com\\\/blog\\\/import-a-folder-of-csvs-into-a-single-google-sheet-1-per-tab\\\/#breadcrumblist\"},\"author\":{\"@id\":\"https:\\\/\\\/www.garysieling.com\\\/blog\\\/author\\\/gary\\\/#author\"},\"creator\":{\"@id\":\"https:\\\/\\\/www.garysieling.com\\\/blog\\\/author\\\/gary\\\/#author\"},\"datePublished\":\"2024-01-02T14:47:15+00:00\",\"dateModified\":\"2024-01-02T14:47:15+00:00\"},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.garysieling.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/www.garysieling.com\\\/blog\\\/\",\"name\":\"Gary Sieling\",\"description\":\"Software Engineer\",\"inLanguage\":\"en-US\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.garysieling.com\\\/blog\\\/#organization\"}}]}\n\t\t<\/script>\n\t\t<!-- All in One SEO -->\n\n","aioseo_head_json":{"title":"Import a folder of CSVs into a single Google Sheet (1 per tab) - Gary Sieling","description":"Got this from ChatGPT and tested. Go to apps script: Paste the script below, add your folder ID, and save. The folder ID can be obtained from the URL to the folder: Then, click Run - you will have to go through several security prompts to agree to trust the script. function importCSVFiles() { var","canonical_url":"https:\/\/www.garysieling.com\/blog\/import-a-folder-of-csvs-into-a-single-google-sheet-1-per-tab\/","robots":"max-image-preview:large","keywords":"","webmasterTools":{"miscellaneous":""},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"BlogPosting","@id":"https:\/\/www.garysieling.com\/blog\/import-a-folder-of-csvs-into-a-single-google-sheet-1-per-tab\/#blogposting","name":"Import a folder of CSVs into a single Google Sheet (1 per tab) - Gary Sieling","headline":"Import a folder of CSVs into a single Google Sheet (1 per tab)","author":{"@id":"https:\/\/www.garysieling.com\/blog\/author\/gary\/#author"},"publisher":{"@id":"https:\/\/www.garysieling.com\/blog\/#organization"},"image":{"@type":"ImageObject","url":"https:\/\/www.garysieling.com\/blog\/wp-content\/uploads\/2024\/01\/image-1.png","@id":"https:\/\/www.garysieling.com\/blog\/import-a-folder-of-csvs-into-a-single-google-sheet-1-per-tab\/#articleImage","width":343,"height":203},"datePublished":"2024-01-02T14:47:15+00:00","dateModified":"2024-01-02T14:47:15+00:00","inLanguage":"en-US","mainEntityOfPage":{"@id":"https:\/\/www.garysieling.com\/blog\/import-a-folder-of-csvs-into-a-single-google-sheet-1-per-tab\/#webpage"},"isPartOf":{"@id":"https:\/\/www.garysieling.com\/blog\/import-a-folder-of-csvs-into-a-single-google-sheet-1-per-tab\/#webpage"},"articleSection":"Data Science"},{"@type":"BreadcrumbList","@id":"https:\/\/www.garysieling.com\/blog\/import-a-folder-of-csvs-into-a-single-google-sheet-1-per-tab\/#breadcrumblist","itemListElement":[{"@type":"ListItem","@id":"https:\/\/www.garysieling.com\/blog#listItem","position":1,"name":"Home","item":"https:\/\/www.garysieling.com\/blog","nextItem":{"@type":"ListItem","@id":"https:\/\/www.garysieling.com\/blog\/category\/data-science\/#listItem","name":"Data Science"}},{"@type":"ListItem","@id":"https:\/\/www.garysieling.com\/blog\/category\/data-science\/#listItem","position":2,"name":"Data Science","item":"https:\/\/www.garysieling.com\/blog\/category\/data-science\/","nextItem":{"@type":"ListItem","@id":"https:\/\/www.garysieling.com\/blog\/import-a-folder-of-csvs-into-a-single-google-sheet-1-per-tab\/#listItem","name":"Import a folder of CSVs into a single Google Sheet (1 per tab)"},"previousItem":{"@type":"ListItem","@id":"https:\/\/www.garysieling.com\/blog#listItem","name":"Home"}},{"@type":"ListItem","@id":"https:\/\/www.garysieling.com\/blog\/import-a-folder-of-csvs-into-a-single-google-sheet-1-per-tab\/#listItem","position":3,"name":"Import a folder of CSVs into a single Google Sheet (1 per tab)","previousItem":{"@type":"ListItem","@id":"https:\/\/www.garysieling.com\/blog\/category\/data-science\/#listItem","name":"Data Science"}}]},{"@type":"Organization","@id":"https:\/\/www.garysieling.com\/blog\/#organization","name":"Gary Sieling","description":"Software Engineer","url":"https:\/\/www.garysieling.com\/blog\/"},{"@type":"Person","@id":"https:\/\/www.garysieling.com\/blog\/author\/gary\/#author","url":"https:\/\/www.garysieling.com\/blog\/author\/gary\/","name":"gary","image":{"@type":"ImageObject","@id":"https:\/\/www.garysieling.com\/blog\/import-a-folder-of-csvs-into-a-single-google-sheet-1-per-tab\/#authorImage","url":"https:\/\/secure.gravatar.com\/avatar\/0be925276d848ffe98a6a9dc8cf33e67?s=96&d=identicon&r=g","width":96,"height":96,"caption":"gary"}},{"@type":"WebPage","@id":"https:\/\/www.garysieling.com\/blog\/import-a-folder-of-csvs-into-a-single-google-sheet-1-per-tab\/#webpage","url":"https:\/\/www.garysieling.com\/blog\/import-a-folder-of-csvs-into-a-single-google-sheet-1-per-tab\/","name":"Import a folder of CSVs into a single Google Sheet (1 per tab) - Gary Sieling","description":"Got this from ChatGPT and tested. Go to apps script: Paste the script below, add your folder ID, and save. The folder ID can be obtained from the URL to the folder: Then, click Run - you will have to go through several security prompts to agree to trust the script. function importCSVFiles() { var","inLanguage":"en-US","isPartOf":{"@id":"https:\/\/www.garysieling.com\/blog\/#website"},"breadcrumb":{"@id":"https:\/\/www.garysieling.com\/blog\/import-a-folder-of-csvs-into-a-single-google-sheet-1-per-tab\/#breadcrumblist"},"author":{"@id":"https:\/\/www.garysieling.com\/blog\/author\/gary\/#author"},"creator":{"@id":"https:\/\/www.garysieling.com\/blog\/author\/gary\/#author"},"datePublished":"2024-01-02T14:47:15+00:00","dateModified":"2024-01-02T14:47:15+00:00"},{"@type":"WebSite","@id":"https:\/\/www.garysieling.com\/blog\/#website","url":"https:\/\/www.garysieling.com\/blog\/","name":"Gary Sieling","description":"Software Engineer","inLanguage":"en-US","publisher":{"@id":"https:\/\/www.garysieling.com\/blog\/#organization"}}]},"og:locale":"en_US","og:site_name":"Gary Sieling - Software Engineer","og:type":"article","og:title":"Import a folder of CSVs into a single Google Sheet (1 per tab) - Gary Sieling","og:description":"Got this from ChatGPT and tested. Go to apps script: Paste the script below, add your folder ID, and save. The folder ID can be obtained from the URL to the folder: Then, click Run - you will have to go through several security prompts to agree to trust the script. function importCSVFiles() { var","og:url":"https:\/\/www.garysieling.com\/blog\/import-a-folder-of-csvs-into-a-single-google-sheet-1-per-tab\/","article:published_time":"2024-01-02T14:47:15+00:00","article:modified_time":"2024-01-02T14:47:15+00:00","twitter:card":"summary_large_image","twitter:title":"Import a folder of CSVs into a single Google Sheet (1 per tab) - Gary Sieling","twitter:description":"Got this from ChatGPT and tested. Go to apps script: Paste the script below, add your folder ID, and save. The folder ID can be obtained from the URL to the folder: Then, click Run - you will have to go through several security prompts to agree to trust the script. function importCSVFiles() { var"},"aioseo_meta_data":{"post_id":"6813","title":null,"description":null,"keywords":[],"keyphrases":{"focus":{"keyphrase":"","score":0,"analysis":{"keyphraseInTitle":{"score":0,"maxScore":9,"error":1}}},"additional":[]},"primary_term":null,"canonical_url":null,"og_title":null,"og_description":null,"og_object_type":"default","og_image_type":"default","og_image_url":null,"og_image_width":null,"og_image_height":null,"og_image_custom_url":null,"og_image_custom_fields":null,"og_video":"","og_custom_url":null,"og_article_section":null,"og_article_tags":[],"twitter_use_og":false,"twitter_card":"default","twitter_image_type":"default","twitter_image_url":null,"twitter_image_custom_url":null,"twitter_image_custom_fields":null,"twitter_title":null,"twitter_description":null,"schema":{"blockGraphs":[],"customGraphs":[],"default":{"data":{"Article":[],"Course":[],"Dataset":[],"FAQPage":[],"Movie":[],"Person":[],"Product":[],"ProductReview":[],"Car":[],"Recipe":[],"Service":[],"SoftwareApplication":[],"WebPage":[]},"graphName":"BlogPosting","isEnabled":true},"graphs":[]},"schema_type":"default","schema_type_options":null,"pillar_content":false,"robots_default":true,"robots_noindex":false,"robots_noarchive":false,"robots_nosnippet":false,"robots_nofollow":false,"robots_noimageindex":false,"robots_noodp":false,"robots_notranslate":false,"robots_max_snippet":"-1","robots_max_videopreview":"-1","robots_max_imagepreview":"large","priority":null,"frequency":"default","local_seo":null,"limit_modified_date":false,"created":"2024-01-02 14:42:06","updated":"2026-07-06 02:41:39","ai":null,"breadcrumb_settings":null,"seo_analyzer_scan_date":null},"aioseo_breadcrumb":"<div class=\"aioseo-breadcrumbs\"><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/www.garysieling.com\/blog\" title=\"Home\">Home<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/www.garysieling.com\/blog\/category\/data-science\/\" title=\"Data Science\">Data Science<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\tImport a folder of CSVs into a single Google Sheet (1 per tab)\n\t\t<\/span><\/div>","aioseo_breadcrumb_json":[{"label":"Home","link":"https:\/\/www.garysieling.com\/blog"},{"label":"Data Science","link":"https:\/\/www.garysieling.com\/blog\/category\/data-science\/"},{"label":"Import a folder of CSVs into a single Google Sheet (1 per tab)","link":"https:\/\/www.garysieling.com\/blog\/import-a-folder-of-csvs-into-a-single-google-sheet-1-per-tab\/"}],"amp_enabled":true,"_links":{"self":[{"href":"https:\/\/www.garysieling.com\/blog\/wp-json\/wp\/v2\/posts\/6813"}],"collection":[{"href":"https:\/\/www.garysieling.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.garysieling.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.garysieling.com\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.garysieling.com\/blog\/wp-json\/wp\/v2\/comments?post=6813"}],"version-history":[{"count":1,"href":"https:\/\/www.garysieling.com\/blog\/wp-json\/wp\/v2\/posts\/6813\/revisions"}],"predecessor-version":[{"id":6817,"href":"https:\/\/www.garysieling.com\/blog\/wp-json\/wp\/v2\/posts\/6813\/revisions\/6817"}],"wp:attachment":[{"href":"https:\/\/www.garysieling.com\/blog\/wp-json\/wp\/v2\/media?parent=6813"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.garysieling.com\/blog\/wp-json\/wp\/v2\/categories?post=6813"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.garysieling.com\/blog\/wp-json\/wp\/v2\/tags?post=6813"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}