{"id":4100,"date":"2023-07-13T15:01:51","date_gmt":"2023-07-13T15:01:51","guid":{"rendered":"https:\/\/statorials.org\/nl\/excel-als-tekstfunctie\/"},"modified":"2023-07-13T15:01:51","modified_gmt":"2023-07-13T15:01:51","slug":"excel-als-tekstfunctie","status":"publish","type":"post","link":"https:\/\/statorials.org\/nl\/excel-als-tekstfunctie\/","title":{"rendered":"Excel: de als-functie gebruiken met tekstwaarden"},"content":{"rendered":"<p><\/p>\n<hr>\n<p><span style=\"color: #000000;\">U kunt de volgende formules gebruiken om een ALS-functie met tekstwaarden in Excel te gebruiken:<\/span><\/p>\n<p> <span style=\"color: #000000;\"><strong>Methode 1: Controleer of cel gelijk is aan tekst<\/strong><\/span><\/p>\n<pre style=\"background-color: #ececec; font-size: 17px;\"> <strong>=IF( <span style=\"color: #3366ff;\">A2<\/span> =\"Starting Center\", \"Yes\", \"No\")\n<\/strong><\/pre>\n<p> <span style=\"color: #000000;\"><span style=\"color: #000000;\">Deze formule retourneert \u201cJa\u201d als de waarde in cel <strong>A2<\/strong> \u201cStartcentrum\u201d is \u2013 anders retourneert deze \u201cNee\u201d.<\/span><\/span><\/p>\n<p> <span style=\"color: #000000;\"><strong>Methode 2: Controleer of de cel specifieke tekst bevat<\/strong><\/span><\/p>\n<pre style=\"background-color: #ececec; font-size: 17px;\"> <strong>=IF(ISNUMBER(SEARCH(\"Guard\", <span style=\"color: #3366ff;\">A2<\/span> )), \"Yes\", \"No\")\n<\/strong><\/pre>\n<p> <span style=\"color: #000000;\">Deze formule retourneert &#8222;Ja&#8220; als de waarde in cel <strong>A2<\/strong> ergens in de cel &#8222;Bewaker&#8220; bevat &#8211; anders wordt &#8222;Nee&#8220; geretourneerd.<\/span><\/p>\n<p> <span style=\"color: #000000;\"><strong>Methode 3: Controleer of de cel een van meerdere specifieke teksten bevat<\/strong><\/span><\/p>\n<pre style=\"background-color: #ececec; font-size: 17px;\"> <strong>=IF(SUMPRODUCT(--ISNUMBER(SEARCH({\"Backup\",\"Guard\"}, <span style=\"color: #3366ff;\">A2<\/span> )))&gt;0, \"Yes\", \"No\")\n<\/strong><\/pre>\n<p> <span style=\"color: #000000;\">Deze formule retourneert &#8218;Ja&#8216; als de waarde in cel <strong>A2<\/strong> &#8218;Back-up&#8216; <em>of<\/em> &#8218;Behouden&#8216; ergens in de cel bevat &#8211; anders wordt &#8218;Nee&#8216; geretourneerd.<\/span><\/p>\n<p> <span style=\"color: #000000;\">De volgende voorbeelden laten zien hoe u elke formule in de praktijk kunt gebruiken met de volgende gegevensset in Excel:<\/span> <\/p>\n<p><img decoding=\"async\" loading=\"lazy\" class=\" wp-image-32584 aligncenter\" src=\"https:\/\/statorials.org\/wp-content\/uploads\/2023\/08\/sitext1.png\" alt=\"\" width=\"526\" height=\"471\" srcset=\"\" sizes=\"auto, \"><\/p>\n<h2> <span style=\"color: #000000;\"><strong>Voorbeeld 1: Controleer of cel gelijk is aan tekst<\/strong><\/span><\/h2>\n<p> <span style=\"color: #000000;\">We kunnen de volgende formule in cel <strong>C2<\/strong> typen om &#8218;Ja&#8216; te retourneren als de waarde in cel <strong>A2<\/strong> gelijk is aan &#8218;Startcentrum&#8216; of anders &#8218;Nee&#8216; retourneren:<\/span><\/p>\n<pre style=\"background-color: #ececec; font-size: 17px;\"> <strong>=IF( <span style=\"color: #3366ff;\">A2<\/span> =\"Starting Center\", \"Yes\", \"No\")<\/strong><\/pre>\n<p> <span style=\"color: #000000;\">We kunnen vervolgens op deze formule klikken en deze naar elke resterende cel in kolom C slepen:<\/span> <\/p>\n<p><img decoding=\"async\" loading=\"lazy\" class=\"aligncenter wp-image-32586\" src=\"https:\/\/statorials.org\/wp-content\/uploads\/2023\/08\/sitext2.png\" alt=\"De Excel ALS-functie controleert of cel gelijk is aan tekst\" width=\"560\" height=\"469\" srcset=\"\" sizes=\"auto, \"><\/p>\n<p> <span style=\"color: #000000;\">De formule retourneert &#8218;Ja&#8216; voor de rij waarin de waarde van kolom A gelijk is aan &#8218;Startcentrum&#8216; en retourneert &#8218;Nee&#8216; voor alle andere rijen.<\/span><\/p>\n<h2> <span style=\"color: #000000;\"><strong>Voorbeeld 2: Controleer of de cel specifieke tekst bevat<\/strong><\/span><\/h2>\n<p> <span style=\"color: #000000;\">We kunnen de volgende formule in cel <strong>C2<\/strong> typen om &#8218;Ja&#8216; te retourneren als de waarde in cel <strong>A2<\/strong> ergens in de cel &#8218;Bewaker&#8216; bevat, of anders &#8218;Nee&#8216; retourneren:<\/span><\/p>\n<pre style=\"background-color: #ececec; font-size: 17px;\"> <strong>=IF(ISNUMBER(SEARCH(\"Guard\", <span style=\"color: #3366ff;\">A2<\/span> )), \"Yes\", \"No\")<\/strong><\/pre>\n<p> <span style=\"color: #000000;\">We kunnen vervolgens op deze formule klikken en deze naar elke resterende cel in kolom C slepen:<\/span> <\/p>\n<p><img decoding=\"async\" loading=\"lazy\" class=\"aligncenter wp-image-32587\" src=\"https:\/\/statorials.org\/wp-content\/uploads\/2023\/08\/sitext3.png\" alt=\"De Excel ALS-functie controleert of de cel tekst bevat\" width=\"604\" height=\"482\" srcset=\"\" sizes=\"auto, \"><\/p>\n<p> <span style=\"color: #000000;\">De formule retourneert &#8218;Ja&#8216; voor elke rij met &#8218;Bewaker&#8216; in kolom A en retourneert &#8218;Nee&#8216; voor alle andere rijen.<\/span><\/p>\n<h2> <span style=\"color: #000000;\"><strong>Voorbeeld 3: Controleer of cel meerdere specifieke teksten bevat<\/strong><\/span><\/h2>\n<p> <span style=\"color: #000000;\">We kunnen de volgende formule in cel <strong>C2<\/strong> typen om &#8218;Ja&#8216; te retourneren als de waarde in cel <strong>A2<\/strong> ergens in de cel &#8218;Back-up&#8216; <em>of<\/em> &#8218;Behouden&#8216; bevat, of anders &#8218;Nee&#8216; retourneren:<\/span><\/p>\n<pre style=\"background-color: #ececec; font-size: 17px;\"> <strong>=IF(SUMPRODUCT(--ISNUMBER(SEARCH({\"Backup\",\"Guard\"}, <span style=\"color: #3366ff;\">A2<\/span> )))&gt;0, \"Yes\", \"No\")<\/strong><\/pre>\n<p> <span style=\"color: #000000;\">We kunnen vervolgens op deze formule klikken en deze naar elke resterende cel in kolom C slepen:<\/span> <\/p>\n<p><img decoding=\"async\" loading=\"lazy\" class=\"aligncenter wp-image-32588\" src=\"https:\/\/statorials.org\/wp-content\/uploads\/2023\/08\/iftext4.png\" alt=\"De Excel ALS-functie controleert of de cel een van meerdere tekstwaarden bevat\" width=\"670\" height=\"480\" srcset=\"\" sizes=\"auto, \"><\/p>\n<p> <span style=\"color: #000000;\">De formule retourneert &#8218;Ja&#8216; voor elke rij die &#8218;Back-up&#8216; <em>of<\/em> &#8218;Vasthouden&#8216; bevat in kolom A en retourneert &#8218;Nee&#8216; voor alle andere rijen.<\/span><\/p>\n<p> <span style=\"color: #000000;\"><strong>Opmerking<\/strong> : U kunt zoveel tekstwaarden als u wilt in de accolades van de formule opnemen om zoveel specifieke tekstwaarden in een cel te vinden als u wilt.<\/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-als-meerdere-voorwaarden-functioneren\/\" target=\"_blank\" rel=\"noopener\">Excel: hoe u de ALS-functie gebruikt met meerdere voorwaarden<\/a><br \/> <a href=\"https:\/\/statorials.org\/nl\/excel-als-functie-ja-of-nee\/\" target=\"_blank\" rel=\"noopener\">Excel: hoe u een ALS-functie maakt om ja of nee te retourneren<\/a><br \/> <a href=\"https:\/\/statorials.org\/nl\/excel-als-functiebereik-van-waarden\/\" target=\"_blank\" rel=\"noopener\">Excel: een ALS-functie gebruiken met een bereik aan waarden<\/a><\/p>\n","protected":false},"excerpt":{"rendered":"<p>U kunt de volgende formules gebruiken om een ALS-functie met tekstwaarden in Excel te gebruiken: Methode 1: Controleer of cel gelijk is aan tekst =IF( A2 =&#8220;Starting Center&#8220;, &#8222;Yes&#8220;, &#8222;No&#8220;) Deze formule retourneert \u201cJa\u201d als de waarde in cel A2 \u201cStartcentrum\u201d is \u2013 anders retourneert deze \u201cNee\u201d. Methode 2: Controleer of de cel specifieke tekst [&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-4100","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>Excel: Hoe de ALS-functie te gebruiken met tekstwaarden - Statorials<\/title>\n<meta name=\"description\" content=\"In deze tutorial wordt uitgelegd hoe u de IF-functie in Excel gebruikt met tekstwaarden, met verschillende voorbeelden.\" \/>\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-als-tekstfunctie\/\" \/>\n<meta property=\"og:locale\" content=\"de_DE\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Excel: Hoe de ALS-functie te gebruiken met tekstwaarden - Statorials\" \/>\n<meta property=\"og:description\" content=\"In deze tutorial wordt uitgelegd hoe u de IF-functie in Excel gebruikt met tekstwaarden, met verschillende voorbeelden.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/statorials.org\/nl\/excel-als-tekstfunctie\/\" \/>\n<meta property=\"og:site_name\" content=\"Statorials\" \/>\n<meta property=\"article:published_time\" content=\"2023-07-13T15:01:51+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/statorials.org\/wp-content\/uploads\/2023\/08\/sitext1.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-als-tekstfunctie\/\",\"url\":\"https:\/\/statorials.org\/nl\/excel-als-tekstfunctie\/\",\"name\":\"Excel: Hoe de ALS-functie te gebruiken met tekstwaarden - Statorials\",\"isPartOf\":{\"@id\":\"https:\/\/statorials.org\/nl\/#website\"},\"datePublished\":\"2023-07-13T15:01:51+00:00\",\"dateModified\":\"2023-07-13T15:01:51+00:00\",\"author\":{\"@id\":\"https:\/\/statorials.org\/nl\/#\/schema\/person\/d4b8842173cca1bb62cdec41860e4219\"},\"description\":\"In deze tutorial wordt uitgelegd hoe u de IF-functie in Excel gebruikt met tekstwaarden, met verschillende voorbeelden.\",\"breadcrumb\":{\"@id\":\"https:\/\/statorials.org\/nl\/excel-als-tekstfunctie\/#breadcrumb\"},\"inLanguage\":\"de\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/statorials.org\/nl\/excel-als-tekstfunctie\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/statorials.org\/nl\/excel-als-tekstfunctie\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Thuis\",\"item\":\"https:\/\/statorials.org\/nl\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Excel: de als-functie gebruiken met tekstwaarden\"}]},{\"@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":"Excel: Hoe de ALS-functie te gebruiken met tekstwaarden - Statorials","description":"In deze tutorial wordt uitgelegd hoe u de IF-functie in Excel gebruikt met tekstwaarden, met verschillende voorbeelden.","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-als-tekstfunctie\/","og_locale":"de_DE","og_type":"article","og_title":"Excel: Hoe de ALS-functie te gebruiken met tekstwaarden - Statorials","og_description":"In deze tutorial wordt uitgelegd hoe u de IF-functie in Excel gebruikt met tekstwaarden, met verschillende voorbeelden.","og_url":"https:\/\/statorials.org\/nl\/excel-als-tekstfunctie\/","og_site_name":"Statorials","article_published_time":"2023-07-13T15:01:51+00:00","og_image":[{"url":"https:\/\/statorials.org\/wp-content\/uploads\/2023\/08\/sitext1.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-als-tekstfunctie\/","url":"https:\/\/statorials.org\/nl\/excel-als-tekstfunctie\/","name":"Excel: Hoe de ALS-functie te gebruiken met tekstwaarden - Statorials","isPartOf":{"@id":"https:\/\/statorials.org\/nl\/#website"},"datePublished":"2023-07-13T15:01:51+00:00","dateModified":"2023-07-13T15:01:51+00:00","author":{"@id":"https:\/\/statorials.org\/nl\/#\/schema\/person\/d4b8842173cca1bb62cdec41860e4219"},"description":"In deze tutorial wordt uitgelegd hoe u de IF-functie in Excel gebruikt met tekstwaarden, met verschillende voorbeelden.","breadcrumb":{"@id":"https:\/\/statorials.org\/nl\/excel-als-tekstfunctie\/#breadcrumb"},"inLanguage":"de","potentialAction":[{"@type":"ReadAction","target":["https:\/\/statorials.org\/nl\/excel-als-tekstfunctie\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/statorials.org\/nl\/excel-als-tekstfunctie\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Thuis","item":"https:\/\/statorials.org\/nl\/"},{"@type":"ListItem","position":2,"name":"Excel: de als-functie gebruiken met tekstwaarden"}]},{"@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\/4100","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=4100"}],"version-history":[{"count":0,"href":"https:\/\/statorials.org\/nl\/wp-json\/wp\/v2\/posts\/4100\/revisions"}],"wp:attachment":[{"href":"https:\/\/statorials.org\/nl\/wp-json\/wp\/v2\/media?parent=4100"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/statorials.org\/nl\/wp-json\/wp\/v2\/categories?post=4100"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/statorials.org\/nl\/wp-json\/wp\/v2\/tags?post=4100"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}