{"id":2744,"date":"2023-07-20T21:42:50","date_gmt":"2023-07-20T21:42:50","guid":{"rendered":"https:\/\/statorials.org\/de\/google-sheets-importbereich-umfasst-mehrere-tabellen\/"},"modified":"2023-07-20T21:42:50","modified_gmt":"2023-07-20T21:42:50","slug":"google-sheets-importbereich-umfasst-mehrere-tabellen","status":"publish","type":"post","link":"https:\/\/statorials.org\/de\/google-sheets-importbereich-umfasst-mehrere-tabellen\/","title":{"rendered":"Google sheets: verwenden sie importrange mit mehreren bl\u00e4ttern"},"content":{"rendered":"<p><\/p>\n<hr>\n<p><span style=\"color: #000000;\">Sie k\u00f6nnen die folgende grundlegende Syntax mit <strong>IMPORTRANGE<\/strong> in Google Sheets verwenden, um Daten aus mehreren Arbeitsbl\u00e4ttern gleichzeitig zu importieren:<\/span><\/p>\n<pre style=\"background-color: #ececec; font-size: 17px;\"> <strong>=QUERY({\n    IMPORTRANGE(\" <span style=\"color: #008000;\">URL1<\/span> \", \" <span style=\"color: #008000;\">'sheetname1'!A1:B10<\/span> \");\n    IMPORTRANGE(\" <span style=\"color: #008000;\">URL2<\/span> \", \" <span style=\"color: #008000;\">'sheetname2'!A1:B10<\/span> \");\n    IMPORTRANGE(\" <span style=\"color: #008000;\">URL3<\/span> \", \" <span style=\"color: #008000;\">'sheetname3'!A1:B10<\/span> \");\n  })<\/strong><\/pre>\n<p> <span style=\"color: #000000;\">Diese spezielle Abfrage gibt Daten aus drei verschiedenen Arbeitsbl\u00e4ttern gleichzeitig zur\u00fcck.<\/span><\/p>\n<p> <span style=\"color: #000000;\">Das folgende Beispiel zeigt, wie diese Syntax in der Praxis verwendet wird.<\/span><\/p>\n<h3> <span style=\"color: #000000;\"><strong>Beispiel: Verwendung von IMPORTRANGE mit mehreren Bl\u00e4ttern<\/strong><\/span><\/h3>\n<p> <span style=\"color: #000000;\">Nehmen wir an, wir m\u00f6chten Daten aus zwei verschiedenen Google-Tabellen gleichzeitig importieren.<\/span><\/p>\n<p> <span style=\"color: #000000;\">Das erste Blatt befindet sich in einer Registerkarte namens <strong>\u201eStatistik\u201c<\/strong> unter der folgenden URL:<\/span> <\/p>\n<p><img decoding=\"async\" loading=\"lazy\" class=\" wp-image-16670 aligncenter\" src=\"https:\/\/statorials.org\/wp-content\/uploads\/2023\/08\/q3.png\" alt=\"\" width=\"678\" height=\"512\" srcset=\"\" sizes=\"\"><\/p>\n<p> <span style=\"color: #000000;\">Das zweite Blatt befindet sich in einer Registerkarte namens <strong>stats2<\/strong> unter der folgenden URL:<\/span> <\/p>\n<p><img decoding=\"async\" loading=\"lazy\" class=\" wp-image-24176 aligncenter\" src=\"https:\/\/statorials.org\/wp-content\/uploads\/2023\/08\/multi11.jpg\" alt=\"\" width=\"659\" height=\"463\" srcset=\"\" sizes=\"\"><\/p>\n<p> <span style=\"color: #000000;\">Mit <strong>IMPORTRANGE<\/strong> k\u00f6nnen wir die folgende Syntax verwenden, um Daten aus beiden Bl\u00e4ttern gleichzeitig in ein neues Arbeitsblatt zu importieren:<\/span><\/p>\n<pre style=\"background-color: #ececec; font-size: 17px;\"> <strong>=QUERY({IMPORTRANGE(\" <span style=\"color: #008000;\">1AdlE9V0aYMdrCmAGtvGXIEfo3szQ1tWRJ2HhJkUhg_4<\/span> \",\" <span style=\"color: #008000;\">'stats'!A1:C12<\/span> \");\n        IMPORTRANGE(\" <span style=\"color: #008000;\">17StTv1xbz658vzhibPH0aSqGX5vXZx3oHkyDqA4uHh8<\/span> \",\" <span style=\"color: #008000;\">'stats2'!A1:C6 <span style=\"color: #000000;\">\"<\/span><\/span> )})\n<\/strong><\/pre>\n<p> <span style=\"color: #000000;\">Der folgende Screenshot zeigt, wie diese Syntax in der Praxis verwendet wird:<\/span> <\/p>\n<p><img decoding=\"async\" loading=\"lazy\" class=\"aligncenter wp-image-24177\" src=\"https:\/\/statorials.org\/wp-content\/uploads\/2023\/08\/multi12.jpg\" alt=\"Google Sheets IMPORTRANGE mit mehreren Bl\u00e4ttern\" width=\"677\" height=\"474\" srcset=\"\" sizes=\"\"><\/p>\n<p> <span style=\"color: #000000;\">Beachten Sie, dass Daten aus beiden Bl\u00e4ttern zur\u00fcckgegeben werden.<\/span><\/p>\n<p> <span style=\"color: #000000;\"><span style=\"color: #000000;\">Beachten Sie au\u00dferdem, dass die Kopfspalte des zweiten Blatts in Zeile 13 zur\u00fcckgegeben wird.<\/span><\/span><\/p>\n<p> <span style=\"color: #000000;\">Um zu verhindern, dass diese Spalte importiert wird, k\u00f6nnen wir eine <strong>Where-<\/strong> Anweisung in unsere <strong>IMPORTRANGE-<\/strong> Funktion einf\u00fcgen:<\/span><\/p>\n<pre style=\"background-color: #ececec; font-size: 17px;\"> <strong>=QUERY({IMPORTRANGE(\" <span style=\"color: #008000;\">1AdlE9V0aYMdrCmAGtvGXIEfo3szQ1tWRJ2HhJkUhg_4<\/span> \",\" <span style=\"color: #008000;\">'stats'!A1:C12<\/span> \");\n        IMPORTRANGE(\" <span style=\"color: #008000;\">17StTv1xbz658vzhibPH0aSqGX5vXZx3oHkyDqA4uHh8<\/span> \",\" <span style=\"color: #008000;\">'stats2'!A1:C6 <span style=\"color: #000000;\">\"<\/span><\/span> )},\n        \" <span style=\"color: #008000;\">where Col1!='Player'<\/span> \")<\/strong><\/pre>\n<p> <span style=\"color: #000000;\">Der folgende Screenshot zeigt, wie diese Syntax in der Praxis verwendet wird:<\/span> <\/p>\n<p><img decoding=\"async\" loading=\"lazy\" class=\" wp-image-24178 aligncenter\" src=\"https:\/\/statorials.org\/wp-content\/uploads\/2023\/08\/multi13.jpg\" alt=\"\" width=\"677\" height=\"491\" srcset=\"\" sizes=\"\"><\/p>\n<p> <span style=\"color: #000000;\">Beachten Sie, dass die Daten aus beiden Bl\u00e4ttern ohne die Kopfzeile des zweiten Blattes zur\u00fcckgegeben werden.<\/span><\/p>\n<h2> <span style=\"color: #000000;\"><strong>Zus\u00e4tzliche Ressourcen<\/strong><\/span><\/h2>\n<p> <span style=\"color: #000000;\">In den folgenden Tutorials wird erl\u00e4utert, wie Sie andere h\u00e4ufige Aufgaben in Google Sheets ausf\u00fchren:<\/span><\/p>\n<p> <a href=\"https:\/\/statorials.org\/de\/google-sheets-fragt-ein-anderes-blatt-ab\/\" target=\"_blank\" rel=\"noopener\">Google Sheets: So f\u00fchren Sie eine Abfrage aus einem anderen Blatt durch<\/a><br \/> <a href=\"https:\/\/statorials.org\/de\/google-sheets-fragt-mehrere-kriterien-ab\/\" target=\"_blank\" rel=\"noopener\">Google Sheets-Abfrage: So verwenden Sie mehrere Kriterien in der Abfrage<\/a><br \/> <a href=\"https:\/\/statorials.org\/de\/google-sheets-einzelne-abfrage\/\" target=\"_blank\" rel=\"noopener\">Google Sheets-Abfrage: So geben Sie nur eindeutige Zeilen zur\u00fcck<\/a><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Sie k\u00f6nnen die folgende grundlegende Syntax mit IMPORTRANGE in Google Sheets verwenden, um Daten aus mehreren Arbeitsbl\u00e4ttern gleichzeitig zu importieren: =QUERY({ IMPORTRANGE(&#8220; URL1 &#8222;, &#8220; &#8217;sheetname1&#8242;!A1:B10 &#8222;); IMPORTRANGE(&#8220; URL2 &#8222;, &#8220; &#8217;sheetname2&#8242;!A1:B10 &#8222;); IMPORTRANGE(&#8220; URL3 &#8222;, &#8220; &#8217;sheetname3&#8242;!A1:B10 &#8222;); }) Diese spezielle Abfrage gibt Daten aus drei verschiedenen Arbeitsbl\u00e4ttern gleichzeitig zur\u00fcck. Das folgende Beispiel zeigt, [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[11],"tags":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v21.5 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Google Sheets: Verwenden Sie IMPORTRANGE mit mehreren Bl\u00e4ttern \u2013 Statorials<\/title>\n<meta name=\"description\" content=\"In diesem Tutorial wird anhand eines Beispiels erl\u00e4utert, wie Sie die Funktion IMPORTRANGE mit mehreren Bl\u00e4ttern in Google Sheets verwenden.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/statorials.org\/de\/google-sheets-importbereich-umfasst-mehrere-tabellen\/\" \/>\n<meta property=\"og:locale\" content=\"de_DE\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Google Sheets: Verwenden Sie IMPORTRANGE mit mehreren Bl\u00e4ttern \u2013 Statorials\" \/>\n<meta property=\"og:description\" content=\"In diesem Tutorial wird anhand eines Beispiels erl\u00e4utert, wie Sie die Funktion IMPORTRANGE mit mehreren Bl\u00e4ttern in Google Sheets verwenden.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/statorials.org\/de\/google-sheets-importbereich-umfasst-mehrere-tabellen\/\" \/>\n<meta property=\"og:site_name\" content=\"Statorials\" \/>\n<meta property=\"article:published_time\" content=\"2023-07-20T21:42:50+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/statorials.org\/wp-content\/uploads\/2023\/08\/q3.png\" \/>\n<meta name=\"author\" content=\"Dr. Benjamin Anderson\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Verfasst von\" \/>\n\t<meta name=\"twitter:data1\" content=\"Dr. Benjamin Anderson\" \/>\n\t<meta name=\"twitter:label2\" content=\"Gesch\u00e4tzte Lesezeit\" \/>\n\t<meta name=\"twitter:data2\" content=\"2 Minuten\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/statorials.org\/de\/google-sheets-importbereich-umfasst-mehrere-tabellen\/\",\"url\":\"https:\/\/statorials.org\/de\/google-sheets-importbereich-umfasst-mehrere-tabellen\/\",\"name\":\"Google Sheets: Verwenden Sie IMPORTRANGE mit mehreren Bl\u00e4ttern \u2013 Statorials\",\"isPartOf\":{\"@id\":\"https:\/\/statorials.org\/de\/#website\"},\"datePublished\":\"2023-07-20T21:42:50+00:00\",\"dateModified\":\"2023-07-20T21:42:50+00:00\",\"author\":{\"@id\":\"https:\/\/statorials.org\/de\/#\/schema\/person\/ec75c4d6365f2708f8a0ad3a42121aa0\"},\"description\":\"In diesem Tutorial wird anhand eines Beispiels erl\u00e4utert, wie Sie die Funktion IMPORTRANGE mit mehreren Bl\u00e4ttern in Google Sheets verwenden.\",\"breadcrumb\":{\"@id\":\"https:\/\/statorials.org\/de\/google-sheets-importbereich-umfasst-mehrere-tabellen\/#breadcrumb\"},\"inLanguage\":\"de-DE\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/statorials.org\/de\/google-sheets-importbereich-umfasst-mehrere-tabellen\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/statorials.org\/de\/google-sheets-importbereich-umfasst-mehrere-tabellen\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Heim\",\"item\":\"https:\/\/statorials.org\/de\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Google sheets: verwenden sie importrange mit mehreren bl\u00e4ttern\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/statorials.org\/de\/#website\",\"url\":\"https:\/\/statorials.org\/de\/\",\"name\":\"Statorials\",\"description\":\"Ihr Leitfaden f\u00fcr statistische Kompetenz !\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/statorials.org\/de\/?s={search_term_string}\"},\"query-input\":\"required name=search_term_string\"}],\"inLanguage\":\"de-DE\"},{\"@type\":\"Person\",\"@id\":\"https:\/\/statorials.org\/de\/#\/schema\/person\/ec75c4d6365f2708f8a0ad3a42121aa0\",\"name\":\"Dr. Benjamin Anderson\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"de-DE\",\"@id\":\"https:\/\/statorials.org\/de\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/statorials.org\/de\/wp-content\/uploads\/2023\/11\/Benjamin-Anderson-96x96.jpg\",\"contentUrl\":\"https:\/\/statorials.org\/de\/wp-content\/uploads\/2023\/11\/Benjamin-Anderson-96x96.jpg\",\"caption\":\"Dr. Benjamin Anderson\"},\"description\":\"Hallo, ich bin Benjamin, ein pensionierter Statistikprofessor, der sich zum engagierten Statorials-Lehrer entwickelt hat. Mit umfassender Erfahrung und Fachwissen auf dem Gebiet der Statistik bin ich bestrebt, mein Wissen zu teilen, um Studenten durch Statorials zu bef\u00e4higen. Mehr wissen\",\"sameAs\":[\"https:\/\/statorials.org\/de\"]}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Google Sheets: Verwenden Sie IMPORTRANGE mit mehreren Bl\u00e4ttern \u2013 Statorials","description":"In diesem Tutorial wird anhand eines Beispiels erl\u00e4utert, wie Sie die Funktion IMPORTRANGE mit mehreren Bl\u00e4ttern in Google Sheets verwenden.","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/statorials.org\/de\/google-sheets-importbereich-umfasst-mehrere-tabellen\/","og_locale":"de_DE","og_type":"article","og_title":"Google Sheets: Verwenden Sie IMPORTRANGE mit mehreren Bl\u00e4ttern \u2013 Statorials","og_description":"In diesem Tutorial wird anhand eines Beispiels erl\u00e4utert, wie Sie die Funktion IMPORTRANGE mit mehreren Bl\u00e4ttern in Google Sheets verwenden.","og_url":"https:\/\/statorials.org\/de\/google-sheets-importbereich-umfasst-mehrere-tabellen\/","og_site_name":"Statorials","article_published_time":"2023-07-20T21:42:50+00:00","og_image":[{"url":"https:\/\/statorials.org\/wp-content\/uploads\/2023\/08\/q3.png"}],"author":"Dr. Benjamin Anderson","twitter_card":"summary_large_image","twitter_misc":{"Verfasst von":"Dr. Benjamin Anderson","Gesch\u00e4tzte Lesezeit":"2 Minuten"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/statorials.org\/de\/google-sheets-importbereich-umfasst-mehrere-tabellen\/","url":"https:\/\/statorials.org\/de\/google-sheets-importbereich-umfasst-mehrere-tabellen\/","name":"Google Sheets: Verwenden Sie IMPORTRANGE mit mehreren Bl\u00e4ttern \u2013 Statorials","isPartOf":{"@id":"https:\/\/statorials.org\/de\/#website"},"datePublished":"2023-07-20T21:42:50+00:00","dateModified":"2023-07-20T21:42:50+00:00","author":{"@id":"https:\/\/statorials.org\/de\/#\/schema\/person\/ec75c4d6365f2708f8a0ad3a42121aa0"},"description":"In diesem Tutorial wird anhand eines Beispiels erl\u00e4utert, wie Sie die Funktion IMPORTRANGE mit mehreren Bl\u00e4ttern in Google Sheets verwenden.","breadcrumb":{"@id":"https:\/\/statorials.org\/de\/google-sheets-importbereich-umfasst-mehrere-tabellen\/#breadcrumb"},"inLanguage":"de-DE","potentialAction":[{"@type":"ReadAction","target":["https:\/\/statorials.org\/de\/google-sheets-importbereich-umfasst-mehrere-tabellen\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/statorials.org\/de\/google-sheets-importbereich-umfasst-mehrere-tabellen\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Heim","item":"https:\/\/statorials.org\/de\/"},{"@type":"ListItem","position":2,"name":"Google sheets: verwenden sie importrange mit mehreren bl\u00e4ttern"}]},{"@type":"WebSite","@id":"https:\/\/statorials.org\/de\/#website","url":"https:\/\/statorials.org\/de\/","name":"Statorials","description":"Ihr Leitfaden f\u00fcr statistische Kompetenz !","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/statorials.org\/de\/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"de-DE"},{"@type":"Person","@id":"https:\/\/statorials.org\/de\/#\/schema\/person\/ec75c4d6365f2708f8a0ad3a42121aa0","name":"Dr. Benjamin Anderson","image":{"@type":"ImageObject","inLanguage":"de-DE","@id":"https:\/\/statorials.org\/de\/#\/schema\/person\/image\/","url":"https:\/\/statorials.org\/de\/wp-content\/uploads\/2023\/11\/Benjamin-Anderson-96x96.jpg","contentUrl":"https:\/\/statorials.org\/de\/wp-content\/uploads\/2023\/11\/Benjamin-Anderson-96x96.jpg","caption":"Dr. Benjamin Anderson"},"description":"Hallo, ich bin Benjamin, ein pensionierter Statistikprofessor, der sich zum engagierten Statorials-Lehrer entwickelt hat. Mit umfassender Erfahrung und Fachwissen auf dem Gebiet der Statistik bin ich bestrebt, mein Wissen zu teilen, um Studenten durch Statorials zu bef\u00e4higen. Mehr wissen","sameAs":["https:\/\/statorials.org\/de"]}]}},"yoast_meta":{"yoast_wpseo_title":"","yoast_wpseo_metadesc":"","yoast_wpseo_canonical":""},"_links":{"self":[{"href":"https:\/\/statorials.org\/de\/wp-json\/wp\/v2\/posts\/2744"}],"collection":[{"href":"https:\/\/statorials.org\/de\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/statorials.org\/de\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/statorials.org\/de\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/statorials.org\/de\/wp-json\/wp\/v2\/comments?post=2744"}],"version-history":[{"count":0,"href":"https:\/\/statorials.org\/de\/wp-json\/wp\/v2\/posts\/2744\/revisions"}],"wp:attachment":[{"href":"https:\/\/statorials.org\/de\/wp-json\/wp\/v2\/media?parent=2744"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/statorials.org\/de\/wp-json\/wp\/v2\/categories?post=2744"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/statorials.org\/de\/wp-json\/wp\/v2\/tags?post=2744"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}