{"id":2862,"date":"2023-07-20T08:57:46","date_gmt":"2023-07-20T08:57:46","guid":{"rendered":"https:\/\/statorials.org\/nl\/iferror-vlookup-google-bladen\/"},"modified":"2023-07-20T08:57:46","modified_gmt":"2023-07-20T08:57:46","slug":"iferror-vlookup-google-bladen","status":"publish","type":"post","link":"https:\/\/statorials.org\/nl\/iferror-vlookup-google-bladen\/","title":{"rendered":"Iferror gebruiken met vert.zoeken in google spreadsheets"},"content":{"rendered":"<p><\/p>\n<hr>\n<p><span style=\"color: #000000;\">U kunt de volgende formule gebruiken met <strong>IFERROR<\/strong> en <strong>VERT.ZOEKEN<\/strong> in Google Spreadsheets om een andere waarde dan #N\/A te retourneren wanneer de functie VERT.ZOEKEN geen bepaalde waarde in een bereik vindt:<\/span><\/p>\n<pre style=\"background-color: #ececec; font-size: 17px;\"> <strong><span class=\" default-formula-text-color\" dir=\"auto\">=<\/span> <span class=\" default-formula-text-color\" dir=\"auto\">IFERROR<\/span> <span class=\" default-formula-text-color\" dir=\"auto\">(<\/span> <span class=\" default-formula-text-color\" dir=\"auto\">VLOOKUP<\/span> <span class=\" default-formula-text-color\" dir=\"auto\">(<\/span> <span class=\" string \" dir=\"auto\">\" <span style=\"color: #008000;\">string<\/span> \"<\/span> <span class=\" default-formula-text-color\" dir=\"auto\">,<\/span> <span dir=\"auto\" style=\"color: #ff6600;\">A2:B11<\/span> <span class=\" default-formula-text-color\" dir=\"auto\">,<\/span> <span class=\"number\" dir=\"auto\" style=\"color: #3366ff;\">2<\/span> <span class=\" default-formula-text-color\" dir=\"auto\">,<\/span> <span class=\"boolean\" dir=\"auto\" style=\"color: #3366ff;\">FALSE<\/span> <span class=\" default-formula-text-color\" dir=\"auto\">)<\/span> <span class=\" default-formula-text-color\" dir=\"auto\">,<\/span> <span class=\" string \" dir=\"auto\">\" <span style=\"color: #008000;\">Does Not Exist<\/span> \"<\/span> <span class=\" default-formula-text-color\" dir=\"auto\">)<\/span>\n<\/strong><\/pre>\n<p> <span style=\"color: #000000;\">Deze specifieke formule zoekt naar &#8222;tekenreeks&#8220; in het bereik A2:B11 en probeert de overeenkomstige waarde in de tweede kolom van dat bereik te retourneren.<\/span><\/p>\n<p> <span style=\"color: #000000;\">Als het &#8222;tekenreeks&#8220; niet vindt, retourneert het eenvoudigweg &#8222;Bestaat niet&#8220; in plaats van een #N\/B-waarde.<\/span><\/p>\n<p> <span style=\"color: #000000;\">Het volgende voorbeeld laat zien hoe u deze formule in de praktijk kunt gebruiken.<\/span><\/p>\n<h3> <span style=\"color: #000000;\"><strong>Voorbeeld: gebruik IFERROR met VERT.ZOEKEN in Google Spreadsheets<\/strong><\/span><\/h3>\n<p> <span style=\"color: #000000;\">Stel dat we de volgende dataset hebben die het aantal punten weergeeft dat door verschillende basketbalteams is gescoord:<\/span> <\/p>\n<p><img decoding=\"async\" loading=\"lazy\" class=\" wp-image-25040 aligncenter\" src=\"https:\/\/statorials.org\/wp-content\/uploads\/2023\/08\/sierreur1.jpg\" alt=\"\" width=\"556\" height=\"433\" srcset=\"\" sizes=\"auto, \"><\/p>\n<p> <span style=\"color: #000000;\">Laten we zeggen dat we de volgende <strong>VERT.ZOEKEN-<\/strong> formule gebruiken om het aantal punten te vinden dat is gekoppeld aan het &#8222;Raptors&#8220;-team:<\/span><\/p>\n<pre style=\"background-color: #ececec; font-size: 17px;\"> <strong><span class=\" default-formula-text-color\" dir=\"auto\">=<\/span> <span class=\" default-formula-text-color\" dir=\"auto\">VLOOKUP<\/span> <span class=\" default-formula-text-color\" dir=\"auto\">(<\/span> <span class=\" string \" dir=\"auto\">\u201c <span style=\"color: #008000;\">Raptors<\/span> \u201d<\/span> <span class=\" default-formula-text-color\" dir=\"auto\">,<\/span> <span dir=\"auto\" style=\"color: #ff6600;\">A2:B11<\/span> <span class=\" default-formula-text-color\" dir=\"auto\">,<\/span> <span class=\"number\" dir=\"auto\" style=\"color: #3366ff;\">2<\/span> <span class=\" default-formula-text-color\" dir=\"auto\">,<\/span> <span class=\"boolean\" dir=\"auto\" style=\"color: #3366ff;\">FALSE<\/span> <span class=\" default-formula-text-color\" dir=\"auto\">)<\/span>\n<\/strong><\/pre>\n<p> <span style=\"color: #000000;\">De volgende schermafbeelding laat zien hoe u deze formule gebruikt:<\/span> <\/p>\n<p><img decoding=\"async\" loading=\"lazy\" class=\" wp-image-25041 aligncenter\" src=\"https:\/\/statorials.org\/wp-content\/uploads\/2023\/08\/sierreur2.jpg\" alt=\"\" width=\"600\" height=\"461\" srcset=\"\" sizes=\"auto, \"><\/p>\n<p> <span style=\"color: #000000;\">Deze formule retourneert de waarde <strong>#N\/A<\/strong> omdat &#8218;Raptors&#8216; niet voorkomt in de kolom Team.<\/span><\/p>\n<p> <span style=\"color: #000000;\">We kunnen echter de volgende <strong>ALS-<\/strong> functie gebruiken met de functie <strong>VERT.ZOEKEN<\/strong> om de waarde &#8222;Bestaat niet&#8220; te retourneren in plaats van <strong>#N\/A<\/strong> :<\/span><\/p>\n<pre style=\"background-color: #ececec; font-size: 17px;\"> <strong><span class=\" default-formula-text-color\" dir=\"auto\">=IFERROR(VLOOKUP(\" <span style=\"color: #008000;\">Raptors<\/span> \", <span dir=\"auto\" style=\"color: #ff6600;\">A2:B11<\/span> , <span class=\"number\" dir=\"auto\" style=\"color: #3366ff;\">2<\/span> , <span class=\"boolean\" dir=\"auto\" style=\"color: #3366ff;\">FALSE<\/span> ), <span class=\" string \" dir=\"auto\">\" <span style=\"color: #008000;\">Does Not Exist<\/span> \"<\/span> )\n<\/span><\/strong><\/pre>\n<p> <span style=\"color: #000000;\">De volgende schermafbeelding laat zien hoe u deze formule gebruikt:<\/span> <\/p>\n<p><img decoding=\"async\" loading=\"lazy\" class=\"aligncenter wp-image-25042\" src=\"https:\/\/statorials.org\/wp-content\/uploads\/2023\/08\/sierreur3.jpg\" alt=\"VERT.ZOEKEN ALS FOUT in Google Spreadsheets\" width=\"593\" height=\"432\" srcset=\"\" sizes=\"auto, \"><\/p>\n<p> <span style=\"color: #000000;\"><span style=\"color: #000000;\">Omdat de &#8218;Raptors&#8216; niet voorkomen in de kolom Team, retourneert de formule de waarde &#8218;Bestaat niet&#8216; in plaats van de waarde <strong>#N\/B<\/strong> .<\/span><\/span><\/p>\n<h3> <strong><span style=\"color: #000000;\">Aanvullende bronnen<\/span><\/strong><\/h3>\n<p> <span style=\"color: #000000;\">In de volgende tutorials wordt uitgelegd hoe u andere veelvoorkomende dingen in Google Spreadsheets kunt doen:<\/span><\/p>\n<p> <a href=\"https:\/\/statorials.org\/nl\/hoofdlettergevoelige-vlookup-google-bladen\/\" target=\"_blank\" rel=\"noopener\">Hoofdlettergevoelig VERT.ZOEKEN gebruiken in Google Spreadsheets<\/a><br \/> <a href=\"https:\/\/statorials.org\/nl\/hoofdlettergevoelige-vlookup-google-bladen\/\" target=\"_blank\" rel=\"noopener\">Hoofdlettergevoelig VERT.ZOEKEN gebruiken in Google Spreadsheets<\/a><\/p>\n","protected":false},"excerpt":{"rendered":"<p>U kunt de volgende formule gebruiken met IFERROR en VERT.ZOEKEN in Google Spreadsheets om een andere waarde dan #N\/A te retourneren wanneer de functie VERT.ZOEKEN geen bepaalde waarde in een bereik vindt: = IFERROR ( VLOOKUP ( &#8220; string &#8220; , A2:B11 , 2 , FALSE ) , &#8220; Does Not Exist &#8220; ) Deze [&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":[],"class_list":["post-2862","post","type-post","status-publish","format-standard","hentry","category-gids"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v21.5 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>IFERROR gebruiken met VERT.ZOEKEN in Google Spreadsheets \u2013 Statorials<\/title>\n<meta name=\"description\" content=\"In deze tutorial wordt met een voorbeeld uitgelegd hoe u IFERROR gebruikt in een VLOOKUP-functie in Google Spreadsheets.\" \/>\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\/nl\/iferror-vlookup-google-bladen\/\" \/>\n<meta property=\"og:locale\" content=\"de_DE\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"IFERROR gebruiken met VERT.ZOEKEN in Google Spreadsheets \u2013 Statorials\" \/>\n<meta property=\"og:description\" content=\"In deze tutorial wordt met een voorbeeld uitgelegd hoe u IFERROR gebruikt in een VLOOKUP-functie in Google Spreadsheets.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/statorials.org\/nl\/iferror-vlookup-google-bladen\/\" \/>\n<meta property=\"og:site_name\" content=\"Statorials\" \/>\n<meta property=\"article:published_time\" content=\"2023-07-20T08:57:46+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/statorials.org\/wp-content\/uploads\/2023\/08\/sierreur1.jpg\" \/>\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=\"1\u00a0Minute\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/statorials.org\/nl\/iferror-vlookup-google-bladen\/\",\"url\":\"https:\/\/statorials.org\/nl\/iferror-vlookup-google-bladen\/\",\"name\":\"IFERROR gebruiken met VERT.ZOEKEN in Google Spreadsheets \u2013 Statorials\",\"isPartOf\":{\"@id\":\"https:\/\/statorials.org\/nl\/#website\"},\"datePublished\":\"2023-07-20T08:57:46+00:00\",\"dateModified\":\"2023-07-20T08:57:46+00:00\",\"author\":{\"@id\":\"https:\/\/statorials.org\/nl\/#\/schema\/person\/d4b8842173cca1bb62cdec41860e4219\"},\"description\":\"In deze tutorial wordt met een voorbeeld uitgelegd hoe u IFERROR gebruikt in een VLOOKUP-functie in Google Spreadsheets.\",\"breadcrumb\":{\"@id\":\"https:\/\/statorials.org\/nl\/iferror-vlookup-google-bladen\/#breadcrumb\"},\"inLanguage\":\"de\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/statorials.org\/nl\/iferror-vlookup-google-bladen\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/statorials.org\/nl\/iferror-vlookup-google-bladen\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Thuis\",\"item\":\"https:\/\/statorials.org\/nl\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Iferror gebruiken met vert.zoeken in google spreadsheets\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/statorials.org\/nl\/#website\",\"url\":\"https:\/\/statorials.org\/nl\/\",\"name\":\"Statorials\",\"description\":\"Uw gids voor statistische competentie\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/statorials.org\/nl\/?s={search_term_string}\"},\"query-input\":\"required name=search_term_string\"}],\"inLanguage\":\"de\"},{\"@type\":\"Person\",\"@id\":\"https:\/\/statorials.org\/nl\/#\/schema\/person\/d4b8842173cca1bb62cdec41860e4219\",\"name\":\"Dr.benjamin anderson\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"de\",\"@id\":\"https:\/\/statorials.org\/nl\/#\/schema\/person\/image\/\",\"url\":\"http:\/\/statorials.org\/nl\/wp-content\/uploads\/2023\/10\/Dr.-Benjamin-Anderson-96x96.jpg\",\"contentUrl\":\"http:\/\/statorials.org\/nl\/wp-content\/uploads\/2023\/10\/Dr.-Benjamin-Anderson-96x96.jpg\",\"caption\":\"Dr.benjamin anderson\"},\"description\":\"Ik ben Benjamin, een gepensioneerde hoogleraar statistiek die nu een toegewijde Statorials-lesgever is. Ik heb uitgebreide ervaring en expertise op het gebied van statistiek en ik ben vastbesloten om mijn kennis te delen met studenten via Statorials. Lees verder\",\"sameAs\":[\"http:\/\/statorials.org\/nl\"]}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"IFERROR gebruiken met VERT.ZOEKEN in Google Spreadsheets \u2013 Statorials","description":"In deze tutorial wordt met een voorbeeld uitgelegd hoe u IFERROR gebruikt in een VLOOKUP-functie in Google Spreadsheets.","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\/nl\/iferror-vlookup-google-bladen\/","og_locale":"de_DE","og_type":"article","og_title":"IFERROR gebruiken met VERT.ZOEKEN in Google Spreadsheets \u2013 Statorials","og_description":"In deze tutorial wordt met een voorbeeld uitgelegd hoe u IFERROR gebruikt in een VLOOKUP-functie in Google Spreadsheets.","og_url":"https:\/\/statorials.org\/nl\/iferror-vlookup-google-bladen\/","og_site_name":"Statorials","article_published_time":"2023-07-20T08:57:46+00:00","og_image":[{"url":"https:\/\/statorials.org\/wp-content\/uploads\/2023\/08\/sierreur1.jpg"}],"author":"Dr.benjamin anderson","twitter_card":"summary_large_image","twitter_misc":{"Verfasst von":"Dr.benjamin anderson","Gesch\u00e4tzte Lesezeit":"1\u00a0Minute"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/statorials.org\/nl\/iferror-vlookup-google-bladen\/","url":"https:\/\/statorials.org\/nl\/iferror-vlookup-google-bladen\/","name":"IFERROR gebruiken met VERT.ZOEKEN in Google Spreadsheets \u2013 Statorials","isPartOf":{"@id":"https:\/\/statorials.org\/nl\/#website"},"datePublished":"2023-07-20T08:57:46+00:00","dateModified":"2023-07-20T08:57:46+00:00","author":{"@id":"https:\/\/statorials.org\/nl\/#\/schema\/person\/d4b8842173cca1bb62cdec41860e4219"},"description":"In deze tutorial wordt met een voorbeeld uitgelegd hoe u IFERROR gebruikt in een VLOOKUP-functie in Google Spreadsheets.","breadcrumb":{"@id":"https:\/\/statorials.org\/nl\/iferror-vlookup-google-bladen\/#breadcrumb"},"inLanguage":"de","potentialAction":[{"@type":"ReadAction","target":["https:\/\/statorials.org\/nl\/iferror-vlookup-google-bladen\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/statorials.org\/nl\/iferror-vlookup-google-bladen\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Thuis","item":"https:\/\/statorials.org\/nl\/"},{"@type":"ListItem","position":2,"name":"Iferror gebruiken met vert.zoeken in google spreadsheets"}]},{"@type":"WebSite","@id":"https:\/\/statorials.org\/nl\/#website","url":"https:\/\/statorials.org\/nl\/","name":"Statorials","description":"Uw gids voor statistische competentie","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/statorials.org\/nl\/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"de"},{"@type":"Person","@id":"https:\/\/statorials.org\/nl\/#\/schema\/person\/d4b8842173cca1bb62cdec41860e4219","name":"Dr.benjamin anderson","image":{"@type":"ImageObject","inLanguage":"de","@id":"https:\/\/statorials.org\/nl\/#\/schema\/person\/image\/","url":"http:\/\/statorials.org\/nl\/wp-content\/uploads\/2023\/10\/Dr.-Benjamin-Anderson-96x96.jpg","contentUrl":"http:\/\/statorials.org\/nl\/wp-content\/uploads\/2023\/10\/Dr.-Benjamin-Anderson-96x96.jpg","caption":"Dr.benjamin anderson"},"description":"Ik ben Benjamin, een gepensioneerde hoogleraar statistiek die nu een toegewijde Statorials-lesgever is. Ik heb uitgebreide ervaring en expertise op het gebied van statistiek en ik ben vastbesloten om mijn kennis te delen met studenten via Statorials. Lees verder","sameAs":["http:\/\/statorials.org\/nl"]}]}},"yoast_meta":{"yoast_wpseo_title":"","yoast_wpseo_metadesc":"","yoast_wpseo_canonical":""},"_links":{"self":[{"href":"https:\/\/statorials.org\/nl\/wp-json\/wp\/v2\/posts\/2862","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/statorials.org\/nl\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/statorials.org\/nl\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/statorials.org\/nl\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/statorials.org\/nl\/wp-json\/wp\/v2\/comments?post=2862"}],"version-history":[{"count":0,"href":"https:\/\/statorials.org\/nl\/wp-json\/wp\/v2\/posts\/2862\/revisions"}],"wp:attachment":[{"href":"https:\/\/statorials.org\/nl\/wp-json\/wp\/v2\/media?parent=2862"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/statorials.org\/nl\/wp-json\/wp\/v2\/categories?post=2862"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/statorials.org\/nl\/wp-json\/wp\/v2\/tags?post=2862"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}