{"id":2145,"date":"2023-09-28T22:49:35","date_gmt":"2023-09-28T22:49:35","guid":{"rendered":"https:\/\/exceladvisor.org\/nl\/som-1\/"},"modified":"2023-12-06T05:48:49","modified_gmt":"2023-12-06T05:48:49","slug":"som-1","status":"publish","type":"page","link":"https:\/\/exceladvisor.org\/nl\/som-1\/","title":{"rendered":"Hoe gebruik je sum in excel via vba?"},"content":{"rendered":"<div class=\"excel-voor-de-inhoud\" id=\"excel-453470651\"><script type=\"text\/javascript\">\r\n\tatOptions = {\r\n\t\t'key' : 'c1158f160081d6540a8409e6925dab94',\r\n\t\t'format' : 'iframe',\r\n\t\t'height' : 250,\r\n\t\t'width' : 300,\r\n\t\t'params' : {}\r\n\t};\r\n<\/script>\r\n<script type=\"text\/javascript\" src=\"\/\/www.highperformanceformat.com\/c1158f160081d6540a8409e6925dab94\/invoke.js\"><\/script><\/div> <p>In Excel kunt u VBA gebruiken om de som van waarden uit een celbereik of meerdere bereiken te berekenen. En in deze tutorial gaan we de verschillende manieren leren waarop we het kunnen gebruiken.<\/p><h2 class=\"wp-block-heading\"> Som op in VBA met behulp van WorksheetFunction<\/h2><p> In VBA <a href=\"https:\/\/exceladvisor.org\/nl\/functies\/\">zijn er verschillende functies<\/a> die u kunt gebruiken, maar er is geen specifieke functie hiervoor. Dit betekent niet dat we geen bedrag kunnen maken. In VBA is er een eigenschap genaamd <a href=\"https:\/\/exceladvisor.org\/nl\/spreadsheet-functie\/\">WorksheetFunction<\/a> waarmee u functies in VBA-code kunt aanroepen. <\/p><div class=\"wp-block-image\"><figure class=\"aligncenter size-full is-resized\"><img loading=\"lazy\" decoding=\"async\" class=\"wp-image-61238\" src=\"https:\/\/exceladvisor.org\/wp-content\/uploads\/2023\/08\/1-somme-en-vba-en-utilisant-la-feuille-de-calcul.png\" sizes=\"auto, \" srcset=\"\" alt=\"som-in-vba-met-spreadsheet\" width=\"463\" height=\"300\"><\/figure><\/div><p> Beschouw de som van de waarden in het bereik A1:A10.<\/p><ol><li> Voer eerst de eigenschap van de werkbladfunctie in en selecteer vervolgens de functie SOM in de lijst. <br><img loading=\"lazy\" decoding=\"async\" title=\"2-enter-werkblad-functie\" src=\"https:\/\/exceladvisor.org\/wp-content\/uploads\/2023\/08\/2-entrez-la-fonction-de-feuille-de-calcul.png\" sizes=\"auto, \" srcset=\"\" alt=\"enter-worksheet-function\" width=\"492\" height=\"298\"><\/li><li> Vervolgens moet u een haakje beginnen in te voeren, net zoals u dat doet bij het invoeren van een functie in het werkblad. <br><img loading=\"lazy\" decoding=\"async\" title=\"3-start-haakje\" src=\"https:\/\/exceladvisor.org\/wp-content\/uploads\/2023\/08\/3-parentheses-ouvrantes.png\" sizes=\"auto, \" srcset=\"\" alt=\"starting-parenthesis\" width=\"454\" height=\"285\"><\/li><li> Daarna moeten we het <a href=\"https:\/\/exceladvisor.org\/nl\/bereik-1\/\">bereikobject<\/a> gebruiken om te verwijzen naar het bereik waarvoor we de som willen berekenen. <br><img loading=\"lazy\" decoding=\"async\" title=\"4-gebruik-het-bereik-object\" src=\"https:\/\/exceladvisor.org\/wp-content\/uploads\/2023\/08\/4-utiliser-lobjet-range.png\" sizes=\"auto, \" srcset=\"\" alt=\"use-the-range-object\" width=\"515\" height=\"249\"><\/li><li> Typ aan het einde een haakje sluiten en wijs de retourwaarde van de functie toe aan cel B1. <br><img loading=\"lazy\" decoding=\"async\" title=\"5-sluitende haakjes\" src=\"https:\/\/exceladvisor.org\/wp-content\/uploads\/2023\/08\/5-parenthese-fermante.png\" sizes=\"auto, \" srcset=\"\" alt=\"closing-parenthesis\" width=\"653\" height=\"229\"><\/li><\/ol><pre class=\"wp-block-code\"> <code class=\"language-visual-basic\" lang=\"visual-basic\"><strong>Range<\/strong> (\"B1\") = Application.WorksheetFunction.Sum(Range(\"A1:A10\"))<\/code><\/pre><p> Wanneer u deze code nu uitvoert, wordt de som berekend van de waarden die u in het bereik A1:A10 heeft en <a href=\"https:\/\/exceladvisor.org\/nl\/cel-waarde\/\">voert u de waarde in cel<\/a> B1 in. <\/p><div class=\"wp-block-image\"><figure class=\"aligncenter size-full is-resized\"><img loading=\"lazy\" decoding=\"async\" class=\"wp-image-61243\" src=\"https:\/\/exceladvisor.org\/wp-content\/uploads\/2023\/08\/6-executer-le-code-pour-calculer.png\" sizes=\"auto, \" srcset=\"\" alt=\"voer de code uit om te berekenen\" width=\"722\" height=\"346\"><\/figure><\/div><h2 class=\"wp-block-heading\"> Som van waarden van een hele kolom of rij<\/h2><p> In dit geval geeft u gewoon een rij of kolom op in plaats van het bereik dat we in het vorige voorbeeld hebben gebruikt.<\/p><pre class=\"wp-block-code\"> <code class=\"language-visual-basic\" lang=\"visual-basic\">' <strong>for<\/strong> the entire column A <strong>Range<\/strong> (\"B1\") = Application.WorksheetFunction.Sum( <strong>Range<\/strong> (\"A:A\")) ' <strong>for<\/strong> entire row 1 <strong>Range<\/strong> (\"B1\") = Application.WorksheetFunction.Sum( <strong>Range<\/strong> (\"1:1\"))<\/code><\/pre><h2 class=\"wp-block-heading\"> Gebruik VBA om selectiewaarden toe te voegen<\/h2><p> Stel nu dat u alleen de waarde van de geselecteerde cellen wilt optellen, omdat u deze code kunt gebruiken.<\/p><pre class=\"wp-block-code\"> <code class=\"language-visual-basic\" lang=\"visual-basic\"><strong>Sub<\/strong> vba_sum_selection() <strong>Dim<\/strong> sRange <strong>As<\/strong> Range <strong>Dim<\/strong> iSum <strong>As<\/strong> Long <strong>On<\/strong> <strong>Error<\/strong> <strong>GoTo<\/strong> errorHandler <strong>Set<\/strong> sRange = Selection iSum = WorksheetFunction.Sum(Range(sRange.Address)) MsgBox iSum errorHandler: MsgBox \"make sure to select a valid range of cells\" <strong>End<\/strong> <strong>Sub<\/strong><\/code><\/pre><p> In de bovenstaande code gebruikten we de selectie en specificeerden deze vervolgens in de variabele &#8220;sRange&#8221;. Vervolgens gebruikten we het adres van deze bereikvariabele om de som te verkrijgen.<\/p><h2 class=\"wp-block-heading\"> VBA-som van alle bovenstaande cellen<\/h2><p> De volgende code extraheert alle cellen en somwaarden en voert het resultaat in de geselecteerde cel in.<\/p><pre class=\"wp-block-code\"> <code class=\"language-visual-basic\" lang=\"visual-basic\"><strong>Sub<\/strong> vba_auto_sum() <strong>Dim<\/strong> iFirst <strong>As<\/strong> String <strong>Dim<\/strong> iLast <strong>As<\/strong> String <strong>Dim<\/strong> iRange <strong>As<\/strong> Range <strong>On<\/strong> <strong>Error<\/strong> <strong>GoTo<\/strong> errorHandler iFirst = Selection. <strong>End<\/strong> (xlUp). <strong>End<\/strong> (xlUp).Address iLast = Selection. <strong>End<\/strong> (xlUp).Address <strong>Set<\/strong> iRange = Range(iFirst &amp; \":\" &amp; iLast) ActiveCell = WorksheetFunction.Sum(iRange) <strong>Exit<\/strong> <strong>Sub<\/strong> errorHandler: MsgBox \"make sure to select a valid range of cells\" <strong>End<\/strong> <strong>Sub<\/strong><\/code><\/pre><h2 class=\"wp-block-heading\"> Voeg dynamisch bereik toe met VBA<\/h2><p> En op dezelfde manier kunt u dynamisch bereik gebruiken terwijl u VBA gebruikt om waarden toe te voegen.<\/p><pre class=\"wp-block-code\"> <code class=\"language-visual-basic\" lang=\"visual-basic\"><strong>Sub<\/strong> vba_dynamic_range_sum() <strong>Dim<\/strong> iFirst <strong>As<\/strong> String <strong>Dim<\/strong> iLast <strong>As<\/strong> String <strong>Dim<\/strong> iRange <strong>As<\/strong> Range <strong>On<\/strong> <strong>Error<\/strong> <strong>GoTo<\/strong> errorHandler iFirst = Selection.Offset(1, 1).Address iLast = Selection.Offset(5, 5).Address <strong>Set<\/strong> iRange = Range(iFirst &amp; \":\" &amp; iLast) ActiveCell = WorksheetFunction.Sum(iRange) <strong>Exit<\/strong> <strong>Sub<\/strong> errorHandler: MsgBox \"make sure to select a valid range of cells\" <strong>End<\/strong> <strong>Sub<\/strong><\/code><\/pre><h2 class=\"wp-block-heading\"> Voeg een dynamische kolom of rij toe<\/h2><p> Op dezelfde manier kunt u, als u een dynamische kolom wilt gebruiken, de volgende code gebruiken die de kolom van de actieve cel neemt en alle waarden optelt die u daar heeft.<\/p><pre class=\"wp-block-code\"> <code class=\"language-visual-basic\" lang=\"visual-basic\"><strong>Sub<\/strong> vba_dynamic_column() <strong>Dim<\/strong> iCol <strong>As<\/strong> Long <strong>On<\/strong> <strong>Error<\/strong> <strong>GoTo<\/strong> errorHandler iCol = ActiveCell.Column MsgBox WorksheetFunction.Sum(Columns(iCol)) <strong>Exit<\/strong> <strong>Sub<\/strong> errorHandler: MsgBox \"make sure to select a valid range of cells\" <strong>End<\/strong> <strong>Sub<\/strong><\/code><\/pre><p> En voor een rij.<\/p><pre class=\"wp-block-code\"> <code class=\"language-visual-basic\" lang=\"visual-basic\"><strong>Sub<\/strong> vba_dynamic_row() <strong>Dim<\/strong> iRow <strong>As<\/strong> Long <strong>On<\/strong> <strong>Error<\/strong> <strong>GoTo<\/strong> errorHandler iRow = ActiveCell.Row MsgBox WorksheetFunction.Sum(Rows(iCol)) <strong>Exit<\/strong> <strong>Sub<\/strong> errorHandler: MsgBox \"make sure to select a valid range of cells\" <strong>End<\/strong> <strong>Sub<\/strong><\/code><\/pre><h2 class=\"wp-block-heading\"> Gebruik SUMIF met VBA<\/h2><p> Net als som kun je de functie SOM.ALS gebruiken om waarden toe te voegen met criteria zoals in het volgende voorbeeld. <\/p><div class=\"wp-block-image\"><figure class=\"aligncenter size-full is-resized\"><img loading=\"lazy\" decoding=\"async\" class=\"wp-image-61244\" src=\"https:\/\/exceladvisor.org\/wp-content\/uploads\/2023\/08\/7-sumif-avec-vba.png\" sizes=\"auto, \" srcset=\"\" alt=\"sumif-met-vba\" width=\"771\" height=\"332\"><\/figure><\/div><pre class=\"wp-block-code\"> <code class=\"language-visual-basic\" lang=\"visual-basic\">Sub vba_sumif() Dim cRange <strong>As<\/strong> <strong>Range<\/strong> Dim sRange <strong>As<\/strong> <strong>Range<\/strong> <strong>Set<\/strong> cRange = <strong>Range<\/strong> (\"A2:A13\") <strong>Set<\/strong> sRange = <strong>Range<\/strong> (\"B2:B13\") <strong>Range<\/strong> (\"C2\") = _ WorksheetFunction.SumIf(cRange, \"Product B\", sRange) End Sub<\/code><\/pre><div class=\"gb-container gb-container-4db6181c gb-container-mt\"> <a class=\"gb-button gb-button-c5897111 gb-button-text gb-button-mt-button\" href=\"https:\/\/exceladvisor.org\/nl\/vba\/\">Wat is VBA<\/a><h2 class=\"gb-headline gb-headline-665e5f6b gb-headline-text gb-headline-mt-heading\"> Gerelateerde tutorials <\/h2><div class=\"gb-grid-wrapper gb-grid-wrapper-a20baf7c gb-grid-wrapper-mt-grid\"><div class=\"gb-grid-column gb-grid-column-65ddf67e\"><div class=\"gb-container gb-container-65ddf67e\"><ul><li> <a href=\"https:\/\/exceladvisor.org\/nl\/gemiddeld-2\/\">Gemiddelde waarden in Excel met VBA<\/a><\/li><li> <a href=\"https:\/\/exceladvisor.org\/nl\/de-datum-van-vandaag-huidige-tijd\/\">Ontvang de datum van vandaag en de huidige tijd met behulp van VBA<\/a><\/li><li> <a href=\"https:\/\/exceladvisor.org\/nl\/wedstrijd-2\/\">Match-functie in VBA<\/a><\/li><li> <a href=\"https:\/\/exceladvisor.org\/nl\/modus-1\/\">MOD in VBA<\/a><\/li><li> <a href=\"https:\/\/exceladvisor.org\/nl\/willekeurig-nummer\/\">VBA willekeurige getallen<\/a> <\/li><\/ul><\/div><\/div><div class=\"gb-grid-column gb-grid-column-50067b57\"><div class=\"gb-container gb-container-50067b57\"><\/div><\/div><\/div><\/div>","protected":false},"excerpt":{"rendered":"","protected":false},"author":1,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"open","ping_status":"closed","template":"","meta":{"ub_ctt_via":"","footnotes":""},"class_list":["post-2145","page","type-page","status-publish","hentry"],"featured_image_src":null,"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v25.4 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Hoe gebruik je SUM in Excel via VBA? (Tutorial 2023)<\/title>\n<meta name=\"description\" content=\"In deze zelfstudie leert u hoe u VBA kunt gebruiken om waarden in Excel toe te voegen vanuit een bereik van cellen, kolommen\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/exceladvisor.org\/nl\/som-1\/\" \/>\n<meta property=\"og:locale\" content=\"nl_NL\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Hoe gebruik je SUM in Excel via VBA? (Tutorial 2023)\" \/>\n<meta property=\"og:description\" content=\"In deze zelfstudie leert u hoe u VBA kunt gebruiken om waarden in Excel toe te voegen vanuit een bereik van cellen, kolommen\" \/>\n<meta property=\"og:url\" content=\"https:\/\/exceladvisor.org\/nl\/som-1\/\" \/>\n<meta property=\"og:site_name\" content=\"Excel Advisor\" \/>\n<meta property=\"article:modified_time\" content=\"2023-12-06T05:48:49+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/exceladvisor.org\/wp-content\/uploads\/2023\/08\/1-somme-en-vba-en-utilisant-la-feuille-de-calcul.png\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Geschatte leestijd\" \/>\n\t<meta name=\"twitter:data1\" content=\"4 minuten\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/exceladvisor.org\/nl\/som-1\/\",\"url\":\"https:\/\/exceladvisor.org\/nl\/som-1\/\",\"name\":\"Hoe gebruik je SUM in Excel via VBA? (Tutorial 2023)\",\"isPartOf\":{\"@id\":\"https:\/\/exceladvisor.org\/nl\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/exceladvisor.org\/nl\/som-1\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/exceladvisor.org\/nl\/som-1\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/exceladvisor.org\/wp-content\/uploads\/2023\/08\/1-somme-en-vba-en-utilisant-la-feuille-de-calcul.png\",\"datePublished\":\"2023-09-28T22:49:35+00:00\",\"dateModified\":\"2023-12-06T05:48:49+00:00\",\"description\":\"In deze zelfstudie leert u hoe u VBA kunt gebruiken om waarden in Excel toe te voegen vanuit een bereik van cellen, kolommen\",\"breadcrumb\":{\"@id\":\"https:\/\/exceladvisor.org\/nl\/som-1\/#breadcrumb\"},\"inLanguage\":\"nl-NL\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/exceladvisor.org\/nl\/som-1\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"nl-NL\",\"@id\":\"https:\/\/exceladvisor.org\/nl\/som-1\/#primaryimage\",\"url\":\"https:\/\/exceladvisor.org\/wp-content\/uploads\/2023\/08\/1-somme-en-vba-en-utilisant-la-feuille-de-calcul.png\",\"contentUrl\":\"https:\/\/exceladvisor.org\/wp-content\/uploads\/2023\/08\/1-somme-en-vba-en-utilisant-la-feuille-de-calcul.png\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/exceladvisor.org\/nl\/som-1\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Thuis\",\"item\":\"https:\/\/exceladvisor.org\/nl\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Hoe gebruik je sum in excel via vba?\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/exceladvisor.org\/nl\/#website\",\"url\":\"https:\/\/exceladvisor.org\/nl\/\",\"name\":\"Excel Advisor\",\"description\":\"Uw gids voor datadominantie\",\"publisher\":{\"@id\":\"https:\/\/exceladvisor.org\/nl\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/exceladvisor.org\/nl\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"nl-NL\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/exceladvisor.org\/nl\/#organization\",\"name\":\"Excel Advisor\",\"url\":\"https:\/\/exceladvisor.org\/nl\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"nl-NL\",\"@id\":\"https:\/\/exceladvisor.org\/nl\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/exceladvisor.org\/nl\/wp-content\/uploads\/2023\/12\/exceladvisor.org_.png\",\"contentUrl\":\"https:\/\/exceladvisor.org\/nl\/wp-content\/uploads\/2023\/12\/exceladvisor.org_.png\",\"width\":105,\"height\":36,\"caption\":\"Excel Advisor\"},\"image\":{\"@id\":\"https:\/\/exceladvisor.org\/nl\/#\/schema\/logo\/image\/\"}}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Hoe gebruik je SUM in Excel via VBA? (Tutorial 2023)","description":"In deze zelfstudie leert u hoe u VBA kunt gebruiken om waarden in Excel toe te voegen vanuit een bereik van cellen, kolommen","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:\/\/exceladvisor.org\/nl\/som-1\/","og_locale":"nl_NL","og_type":"article","og_title":"Hoe gebruik je SUM in Excel via VBA? (Tutorial 2023)","og_description":"In deze zelfstudie leert u hoe u VBA kunt gebruiken om waarden in Excel toe te voegen vanuit een bereik van cellen, kolommen","og_url":"https:\/\/exceladvisor.org\/nl\/som-1\/","og_site_name":"Excel Advisor","article_modified_time":"2023-12-06T05:48:49+00:00","og_image":[{"url":"https:\/\/exceladvisor.org\/wp-content\/uploads\/2023\/08\/1-somme-en-vba-en-utilisant-la-feuille-de-calcul.png","type":"","width":"","height":""}],"twitter_card":"summary_large_image","twitter_misc":{"Geschatte leestijd":"4 minuten"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/exceladvisor.org\/nl\/som-1\/","url":"https:\/\/exceladvisor.org\/nl\/som-1\/","name":"Hoe gebruik je SUM in Excel via VBA? (Tutorial 2023)","isPartOf":{"@id":"https:\/\/exceladvisor.org\/nl\/#website"},"primaryImageOfPage":{"@id":"https:\/\/exceladvisor.org\/nl\/som-1\/#primaryimage"},"image":{"@id":"https:\/\/exceladvisor.org\/nl\/som-1\/#primaryimage"},"thumbnailUrl":"https:\/\/exceladvisor.org\/wp-content\/uploads\/2023\/08\/1-somme-en-vba-en-utilisant-la-feuille-de-calcul.png","datePublished":"2023-09-28T22:49:35+00:00","dateModified":"2023-12-06T05:48:49+00:00","description":"In deze zelfstudie leert u hoe u VBA kunt gebruiken om waarden in Excel toe te voegen vanuit een bereik van cellen, kolommen","breadcrumb":{"@id":"https:\/\/exceladvisor.org\/nl\/som-1\/#breadcrumb"},"inLanguage":"nl-NL","potentialAction":[{"@type":"ReadAction","target":["https:\/\/exceladvisor.org\/nl\/som-1\/"]}]},{"@type":"ImageObject","inLanguage":"nl-NL","@id":"https:\/\/exceladvisor.org\/nl\/som-1\/#primaryimage","url":"https:\/\/exceladvisor.org\/wp-content\/uploads\/2023\/08\/1-somme-en-vba-en-utilisant-la-feuille-de-calcul.png","contentUrl":"https:\/\/exceladvisor.org\/wp-content\/uploads\/2023\/08\/1-somme-en-vba-en-utilisant-la-feuille-de-calcul.png"},{"@type":"BreadcrumbList","@id":"https:\/\/exceladvisor.org\/nl\/som-1\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Thuis","item":"https:\/\/exceladvisor.org\/nl\/"},{"@type":"ListItem","position":2,"name":"Hoe gebruik je sum in excel via vba?"}]},{"@type":"WebSite","@id":"https:\/\/exceladvisor.org\/nl\/#website","url":"https:\/\/exceladvisor.org\/nl\/","name":"Excel Advisor","description":"Uw gids voor datadominantie","publisher":{"@id":"https:\/\/exceladvisor.org\/nl\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/exceladvisor.org\/nl\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"nl-NL"},{"@type":"Organization","@id":"https:\/\/exceladvisor.org\/nl\/#organization","name":"Excel Advisor","url":"https:\/\/exceladvisor.org\/nl\/","logo":{"@type":"ImageObject","inLanguage":"nl-NL","@id":"https:\/\/exceladvisor.org\/nl\/#\/schema\/logo\/image\/","url":"https:\/\/exceladvisor.org\/nl\/wp-content\/uploads\/2023\/12\/exceladvisor.org_.png","contentUrl":"https:\/\/exceladvisor.org\/nl\/wp-content\/uploads\/2023\/12\/exceladvisor.org_.png","width":105,"height":36,"caption":"Excel Advisor"},"image":{"@id":"https:\/\/exceladvisor.org\/nl\/#\/schema\/logo\/image\/"}}]}},"yoast_meta":{"yoast_wpseo_title":"","yoast_wpseo_metadesc":"","yoast_wpseo_canonical":""},"_links":{"self":[{"href":"https:\/\/exceladvisor.org\/nl\/wp-json\/wp\/v2\/pages\/2145","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/exceladvisor.org\/nl\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/exceladvisor.org\/nl\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/exceladvisor.org\/nl\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/exceladvisor.org\/nl\/wp-json\/wp\/v2\/comments?post=2145"}],"version-history":[{"count":1,"href":"https:\/\/exceladvisor.org\/nl\/wp-json\/wp\/v2\/pages\/2145\/revisions"}],"predecessor-version":[{"id":2564,"href":"https:\/\/exceladvisor.org\/nl\/wp-json\/wp\/v2\/pages\/2145\/revisions\/2564"}],"wp:attachment":[{"href":"https:\/\/exceladvisor.org\/nl\/wp-json\/wp\/v2\/media?parent=2145"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}