{"id":4140,"date":"2023-07-13T08:26:32","date_gmt":"2023-07-13T08:26:32","guid":{"rendered":"https:\/\/statorials.org\/nl\/excel-controleert-of-de-cel-leeg-is\/"},"modified":"2023-07-13T08:26:32","modified_gmt":"2023-07-13T08:26:32","slug":"excel-controleert-of-de-cel-leeg-is","status":"publish","type":"post","link":"https:\/\/statorials.org\/nl\/excel-controleert-of-de-cel-leeg-is\/","title":{"rendered":"Hoe te controleren of de cel leeg is in excel"},"content":{"rendered":"<p><\/p>\n<hr>\n<p><span style=\"color: #000000;\">U kunt de volgende formules gebruiken om te controleren of cellen leeg zijn in Excel:<\/span><\/p>\n<p> <span style=\"color: #000000;\"><strong>Methode 1: Controleer of een cel leeg is<\/strong><\/span><\/p>\n<pre style=\"background-color: #ececec; font-size: 17px;\"> <span style=\"color: #000000;\"><strong><span class=\" default-formula-text-color\" dir=\"auto\">=<\/span> <span class=\" default-formula-text-color\" dir=\"auto\">IF<\/span> <span class=\" default-formula-text-color\" dir=\"auto\">(<\/span> <span class=\" default-formula-text-color\" dir=\"auto\">ISBLANK<\/span> <span class=\" default-formula-text-color\" dir=\"auto\">(<\/span> <span dir=\"auto\" style=\"color: #3366ff;\">A1<\/span> <span class=\" default-formula-text-color\" dir=\"auto\">)<\/span> <span class=\" default-formula-text-color\" dir=\"auto\">,<\/span> <span class=\" string \" dir=\"auto\">\"Empty\"<\/span> <span class=\" default-formula-text-color\" dir=\"auto\">,<\/span> <span class=\" string \" dir=\"auto\">\"Not Empty\"<\/span> <span class=\" default-formula-text-color\" dir=\"auto\">)<\/span>\n<\/strong><\/span><\/pre>\n<p> <span style=\"color: #000000;\">Als cel <strong>A1<\/strong> leeg is, retourneert deze formule &#8218;Leeg&#8216; en als dat niet het geval is, retourneert de formule &#8218;Niet leeg&#8216;.<\/span><\/p>\n<p> <span style=\"color: #000000;\"><strong>Methode 2: Controleer of meerdere cellen leeg zijn<\/strong><\/span><\/p>\n<pre style=\"background-color: #ececec; font-size: 17px;\"> <span style=\"color: #000000;\"><strong><span class=\" default-formula-text-color\" dir=\"auto\">=<\/span> <span class=\" default-formula-text-color\" dir=\"auto\">IF<\/span> <span class=\" default-formula-text-color\" dir=\"auto\">(AND(<\/span> <span class=\" default-formula-text-color\" dir=\"auto\">ISBLANK<\/span> <span class=\" default-formula-text-color\" dir=\"auto\">(<\/span> <span dir=\"auto\" style=\"color: #3366ff;\">A1<\/span> <span class=\" default-formula-text-color\" dir=\"auto\">), ISBLANK( <span style=\"color: #ff0000;\">B1<\/span> ))<\/span> <span class=\" default-formula-text-color\" dir=\"auto\">,<\/span> <span class=\" string \" dir=\"auto\">\u201cEmpty\u201d<\/span> <span class=\" default-formula-text-color\" dir=\"auto\">,<\/span> <span class=\" string \" dir=\"auto\">\u201cNot Empty\u201d<\/span> <span class=\" default-formula-text-color\" dir=\"auto\">)<\/span>\n<\/strong><\/span><\/pre>\n<p> <span style=\"color: #000000;\">Als de cellen <strong>A1<\/strong> en <strong>B1<\/strong> beide leeg zijn, retourneert deze formule &#8218;Leeg&#8216;. Anders retourneert het &#8222;Niet leeg&#8220;.<\/span><\/p>\n<p> <span style=\"color: #000000;\">De volgende voorbeelden laten zien hoe u elke methode in Excel kunt gebruiken.<\/span><\/p>\n<h2> <strong><span style=\"color: #000000;\">Voorbeeld 1: Controleer of een cel leeg is<\/span><\/strong><\/h2>\n<p> <span style=\"color: #000000;\">Laten we zeggen dat we de volgende gegevensset in Excel hebben die het aantal punten weergeeft dat door verschillende basketbalspelers is gescoord:<\/span> <\/p>\n<p><img decoding=\"async\" loading=\"lazy\" class=\" wp-image-32878 aligncenter\" src=\"https:\/\/statorials.org\/wp-content\/uploads\/2023\/08\/checkempty1.png\" alt=\"\" width=\"465\" height=\"429\" srcset=\"\" sizes=\"auto, \"><\/p>\n<p> <span style=\"color: #000000;\">We zullen de volgende formule gebruiken om te controleren of elke cel in kolom A leeg is:<\/span><\/p>\n<pre style=\"background-color: #ececec; font-size: 17px;\"> <span style=\"color: #000000;\"><strong><span class=\" default-formula-text-color\" dir=\"auto\">=<\/span> <span class=\" default-formula-text-color\" dir=\"auto\">IF<\/span> <span class=\" default-formula-text-color\" dir=\"auto\">(<\/span> <span class=\" default-formula-text-color\" dir=\"auto\">ISBLANK<\/span> <span class=\" default-formula-text-color\" dir=\"auto\">(<\/span> <span dir=\"auto\" style=\"color: #3366ff;\">A2<\/span> <span class=\" default-formula-text-color\" dir=\"auto\">)<\/span> <span class=\" default-formula-text-color\" dir=\"auto\">,<\/span> <span class=\" string \" dir=\"auto\">\"Empty\"<\/span> <span class=\" default-formula-text-color\" dir=\"auto\">,<\/span> <span class=\" string \" dir=\"auto\">\"Not Empty\"<\/span> <span class=\" default-formula-text-color\" dir=\"auto\">)<\/span><\/strong><\/span><\/pre>\n<p> <span style=\"color: #000000;\">We typen deze formule in cel <strong>B2<\/strong> en kopi\u00ebren en plakken deze vervolgens in elke resterende cel in kolom B:<\/span> <\/p>\n<p><img decoding=\"async\" loading=\"lazy\" class=\"aligncenter wp-image-32879\" src=\"https:\/\/statorials.org\/wp-content\/uploads\/2023\/08\/checkempty2.png\" alt=\"Excel controleert of de cel leeg is\" width=\"499\" height=\"438\" srcset=\"\" sizes=\"auto, \"><\/p>\n<p> <span style=\"color: #000000;\">De waarden in kolom B vertellen ons of elke overeenkomstige waarde in kolom A leeg is of niet.<\/span><\/p>\n<h2> <strong><span style=\"color: #000000;\">Voorbeeld 2: Controleer of meerdere cellen leeg zijn<\/span><\/strong><\/h2>\n<p> <span style=\"color: #000000;\">Stel dat we de volgende gegevensset in Excel hebben:<\/span> <\/p>\n<p><img decoding=\"async\" loading=\"lazy\" class=\" wp-image-32880 aligncenter\" src=\"https:\/\/statorials.org\/wp-content\/uploads\/2023\/08\/checkempty3.png\" alt=\"\" width=\"496\" height=\"448\" srcset=\"\" sizes=\"auto, \"><\/p>\n<p> <span style=\"color: #000000;\">We zullen de volgende formule gebruiken om te controleren of de cellen in kolommen A en B leeg zijn:<\/span><\/p>\n<pre style=\"background-color: #ececec; font-size: 17px;\"> <span style=\"color: #000000;\"><strong><span class=\" default-formula-text-color\" dir=\"auto\">=<\/span> <span class=\" default-formula-text-color\" dir=\"auto\">IF<\/span> <span class=\" default-formula-text-color\" dir=\"auto\">(AND(<\/span> <span class=\" default-formula-text-color\" dir=\"auto\">ISBLANK<\/span> <span class=\" default-formula-text-color\" dir=\"auto\">(<\/span> <span dir=\"auto\" style=\"color: #3366ff;\">A2<\/span> <span class=\" default-formula-text-color\" dir=\"auto\">), ISBLANK( <span style=\"color: #ff0000;\">B2<\/span> ))<\/span> <span class=\" default-formula-text-color\" dir=\"auto\">,<\/span> <span class=\" string \" dir=\"auto\">\u201cEmpty\u201d<\/span> <span class=\" default-formula-text-color\" dir=\"auto\">,<\/span> <span class=\" string \" dir=\"auto\">\u201cNot Empty\u201d<\/span> <span class=\" default-formula-text-color\" dir=\"auto\">)<\/span>\n<\/strong><\/span><\/pre>\n<p> <span style=\"color: #000000;\">We voeren deze formule in cel <strong>C2<\/strong> in en kopi\u00ebren en plakken deze vervolgens in elke resterende cel in kolom C:<\/span> <\/p>\n<p><img decoding=\"async\" loading=\"lazy\" class=\"aligncenter wp-image-32881\" src=\"https:\/\/statorials.org\/wp-content\/uploads\/2023\/08\/checkempty4.png\" alt=\"Excel controleert of meerdere cellen leeg zijn\" width=\"606\" height=\"457\" srcset=\"\" sizes=\"auto, \"><\/p>\n<p> <span style=\"color: #000000;\">De waarden in kolom C vertellen ons of de twee overeenkomstige waarden in kolom A en kolom B leeg zijn of niet.<\/span><\/p>\n<h2> <span style=\"color: #000000;\"><strong>Aanvullende bronnen<\/strong><\/span><\/h2>\n<p> <span style=\"color: #000000;\">In de volgende zelfstudies wordt uitgelegd hoe u andere veelvoorkomende taken in Excel kunt uitvoeren:<\/span><\/p>\n<p> <a href=\"https:\/\/statorials.org\/nl\/excel-controleert-of-het-bereik-de-waarde-bevat\/\" target=\"_blank\" rel=\"noopener\">Excel: Hoe u kunt controleren of bereik een specifieke waarde bevat<\/a><br \/> <a href=\"https:\/\/statorials.org\/nl\/excel-als-het-gedeeltelijke-tekst-bevat\/\" target=\"_blank\" rel=\"noopener\">Excel: hoe u kunt controleren of de cel gedeeltelijke tekst bevat<\/a><br \/> <a href=\"https:\/\/statorials.org\/nl\/excel-controleert-of-de-waarde-in-een-andere-kolom-bestaat\/\" target=\"_blank\" rel=\"noopener\">Excel: Hoe u kunt controleren of een kolomwaarde in een andere kolom bestaat<\/a><\/p>\n","protected":false},"excerpt":{"rendered":"<p>U kunt de volgende formules gebruiken om te controleren of cellen leeg zijn in Excel: Methode 1: Controleer of een cel leeg is = IF ( ISBLANK ( A1 ) , &#8222;Empty&#8220; , &#8222;Not Empty&#8220; ) Als cel A1 leeg is, retourneert deze formule &#8218;Leeg&#8216; en als dat niet het geval is, retourneert de formule [&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-4140","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>Hoe te controleren of een cel leeg is in Excel \u2013 Statorials<\/title>\n<meta name=\"description\" content=\"In deze tutorial wordt met een voorbeeld uitgelegd hoe u kunt controleren of een cel leeg is in Excel.\" \/>\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\/excel-controleert-of-de-cel-leeg-is\/\" \/>\n<meta property=\"og:locale\" content=\"de_DE\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Hoe te controleren of een cel leeg is in Excel \u2013 Statorials\" \/>\n<meta property=\"og:description\" content=\"In deze tutorial wordt met een voorbeeld uitgelegd hoe u kunt controleren of een cel leeg is in Excel.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/statorials.org\/nl\/excel-controleert-of-de-cel-leeg-is\/\" \/>\n<meta property=\"og:site_name\" content=\"Statorials\" \/>\n<meta property=\"article:published_time\" content=\"2023-07-13T08:26:32+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/statorials.org\/wp-content\/uploads\/2023\/08\/checkempty1.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\u00a0Minuten\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/statorials.org\/nl\/excel-controleert-of-de-cel-leeg-is\/\",\"url\":\"https:\/\/statorials.org\/nl\/excel-controleert-of-de-cel-leeg-is\/\",\"name\":\"Hoe te controleren of een cel leeg is in Excel \u2013 Statorials\",\"isPartOf\":{\"@id\":\"https:\/\/statorials.org\/nl\/#website\"},\"datePublished\":\"2023-07-13T08:26:32+00:00\",\"dateModified\":\"2023-07-13T08:26:32+00:00\",\"author\":{\"@id\":\"https:\/\/statorials.org\/nl\/#\/schema\/person\/d4b8842173cca1bb62cdec41860e4219\"},\"description\":\"In deze tutorial wordt met een voorbeeld uitgelegd hoe u kunt controleren of een cel leeg is in Excel.\",\"breadcrumb\":{\"@id\":\"https:\/\/statorials.org\/nl\/excel-controleert-of-de-cel-leeg-is\/#breadcrumb\"},\"inLanguage\":\"de\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/statorials.org\/nl\/excel-controleert-of-de-cel-leeg-is\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/statorials.org\/nl\/excel-controleert-of-de-cel-leeg-is\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Thuis\",\"item\":\"https:\/\/statorials.org\/nl\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Hoe te controleren of de cel leeg is in excel\"}]},{\"@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":"Hoe te controleren of een cel leeg is in Excel \u2013 Statorials","description":"In deze tutorial wordt met een voorbeeld uitgelegd hoe u kunt controleren of een cel leeg is in Excel.","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\/excel-controleert-of-de-cel-leeg-is\/","og_locale":"de_DE","og_type":"article","og_title":"Hoe te controleren of een cel leeg is in Excel \u2013 Statorials","og_description":"In deze tutorial wordt met een voorbeeld uitgelegd hoe u kunt controleren of een cel leeg is in Excel.","og_url":"https:\/\/statorials.org\/nl\/excel-controleert-of-de-cel-leeg-is\/","og_site_name":"Statorials","article_published_time":"2023-07-13T08:26:32+00:00","og_image":[{"url":"https:\/\/statorials.org\/wp-content\/uploads\/2023\/08\/checkempty1.png"}],"author":"Dr.benjamin anderson","twitter_card":"summary_large_image","twitter_misc":{"Verfasst von":"Dr.benjamin anderson","Gesch\u00e4tzte Lesezeit":"2\u00a0Minuten"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/statorials.org\/nl\/excel-controleert-of-de-cel-leeg-is\/","url":"https:\/\/statorials.org\/nl\/excel-controleert-of-de-cel-leeg-is\/","name":"Hoe te controleren of een cel leeg is in Excel \u2013 Statorials","isPartOf":{"@id":"https:\/\/statorials.org\/nl\/#website"},"datePublished":"2023-07-13T08:26:32+00:00","dateModified":"2023-07-13T08:26:32+00:00","author":{"@id":"https:\/\/statorials.org\/nl\/#\/schema\/person\/d4b8842173cca1bb62cdec41860e4219"},"description":"In deze tutorial wordt met een voorbeeld uitgelegd hoe u kunt controleren of een cel leeg is in Excel.","breadcrumb":{"@id":"https:\/\/statorials.org\/nl\/excel-controleert-of-de-cel-leeg-is\/#breadcrumb"},"inLanguage":"de","potentialAction":[{"@type":"ReadAction","target":["https:\/\/statorials.org\/nl\/excel-controleert-of-de-cel-leeg-is\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/statorials.org\/nl\/excel-controleert-of-de-cel-leeg-is\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Thuis","item":"https:\/\/statorials.org\/nl\/"},{"@type":"ListItem","position":2,"name":"Hoe te controleren of de cel leeg is in excel"}]},{"@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\/4140","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=4140"}],"version-history":[{"count":0,"href":"https:\/\/statorials.org\/nl\/wp-json\/wp\/v2\/posts\/4140\/revisions"}],"wp:attachment":[{"href":"https:\/\/statorials.org\/nl\/wp-json\/wp\/v2\/media?parent=4140"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/statorials.org\/nl\/wp-json\/wp\/v2\/categories?post=4140"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/statorials.org\/nl\/wp-json\/wp\/v2\/tags?post=4140"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}