{"id":2147,"date":"2023-09-28T22:14:48","date_gmt":"2023-09-28T22:14:48","guid":{"rendered":"https:\/\/exceladvisor.org\/nl\/gemiddeld-2\/"},"modified":"2023-12-06T05:48:54","modified_gmt":"2023-12-06T05:48:54","slug":"gemiddeld-2","status":"publish","type":"page","link":"https:\/\/exceladvisor.org\/nl\/gemiddeld-2\/","title":{"rendered":"Hoe gemiddelde waarden in excel via vba?"},"content":{"rendered":"<div class=\"excel-voor-de-inhoud\" id=\"excel-928273663\"><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 gemiddelde waarden te berekenen uit een celbereik of meerdere bereiken. En in deze tutorial leren we de verschillende manieren om het te gebruiken.<\/p><h2 class=\"wp-block-heading\"> Gemiddelde in VBA met behulp van WorksheetFunction<\/h2><p> In VBA zijn er <a href=\"https:\/\/exceladvisor.org\/nl\/functies\/\">verschillende functies<\/a> die u kunt gebruiken, maar er is geen specifieke functie hiervoor. Dit betekent niet dat we geen gemiddelde kunnen nemen. 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-61346\" src=\"https:\/\/exceladvisor.org\/wp-content\/uploads\/2023\/08\/1-moyenne-en-vba-en-utilisant-la-fonction-de-feuille-de-calcul.png\" sizes=\"auto, \" srcset=\"\" alt=\"gemiddelde in vba met behulp van de spreadsheetfunctie\" width=\"460\" height=\"298\"><\/figure><\/div><p> Laten we de waarden in het bereik A1:A10 middelen.<\/p><ol><li> Voer eerst de eigenschap van de werkbladfunctie in en selecteer vervolgens de functie GEMIDDELDE in de lijst. <br><img loading=\"lazy\" decoding=\"async\" title=\"2-vel-functie-gemiddeld\" src=\"https:\/\/exceladvisor.org\/wp-content\/uploads\/2023\/08\/Moyenne-de-la-fonction-2-feuilles-de-calcul.png\" sizes=\"auto, \" srcset=\"\" alt=\"worksheet-function-average\" width=\"466\" height=\"277\"><\/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-enter-beginhaakje\" src=\"https:\/\/exceladvisor.org\/wp-content\/uploads\/2023\/08\/3-entrer-parenthese-de-depart.png\" sizes=\"auto, \" srcset=\"\" alt=\"enter-starting-paranthesis\" width=\"451\" height=\"251\"><\/li><li> Daarna moeten we het bereikobject gebruiken om te verwijzen naar het bereik waarvoor we het gemiddelde willen berekenen. <br><img loading=\"lazy\" decoding=\"async\" title=\"4-ue-the-range-object\" src=\"https:\/\/exceladvisor.org\/wp-content\/uploads\/2023\/08\/4-ue-lobjet-range.png\" sizes=\"auto, \" srcset=\"\" alt=\"use-the-range-object\" width=\"527\" height=\"218\"><\/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-type-close-pranthesis\" src=\"https:\/\/exceladvisor.org\/wp-content\/uploads\/2023\/08\/5-types-de-protheses-fermees.png\" sizes=\"auto, \" srcset=\"\" alt=\"type-close-pranthesis\" width=\"530\" height=\"204\"><\/li><\/ol><pre class=\"wp-block-code\"> <code class=\"language-visual-basic\" lang=\"visual-basic\">Application.WorksheetFunction.Average( <strong>Range<\/strong> (\"A1:A10\"))<\/code><\/pre><p> Wanneer u <a href=\"https:\/\/exceladvisor.org\/nl\/voer-een-macro-uit-2\/\">deze code nu uitvoert,<\/a> wordt het gemiddelde van de waarden in het bereik A1:A10 berekend en wordt de waarde in cel B1 ingevoerd. <\/p><div class=\"wp-block-image\"><figure class=\"aligncenter size-full is-resized\"><img loading=\"lazy\" decoding=\"async\" class=\"wp-image-61351\" src=\"https:\/\/exceladvisor.org\/wp-content\/uploads\/2023\/08\/6-executer-le-code-calcule-la-moyenne.png\" sizes=\"auto, \" srcset=\"\" alt=\"run-code-bereken-gemiddelde\" width=\"728\" height=\"353\"><\/figure><\/div><h2 class=\"wp-block-heading\"> Gemiddelde waarden van een hele kolom of rij<\/h2><p> In dit geval hoeft u alleen maar een rij of kolom op te geven 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\">'for the entire column A <strong>Range<\/strong> (\"B1\") = Application.WorksheetFunction.Average( <strong>Range<\/strong> (\"A:A\")) 'for entire row 1 <strong>Range<\/strong> (\"B1\") = Application.WorksheetFunction.Average( <strong>Range<\/strong> (\"1:1\"))<\/code><\/pre><h2 class=\"wp-block-heading\"> Gebruik VBA om de selectiewaarden te middelen<\/h2><p> Stel nu dat u alleen de gemiddelde waarde van geselecteerde cellen wilt berekenen, omdat u dergelijke code kunt gebruiken.<\/p><pre class=\"wp-block-code\"> <code class=\"language-visual-basic\" lang=\"visual-basic\"><strong>Sub<\/strong> vba_average_selection() <strong>Dim<\/strong> sRange <strong>As<\/strong> Range <strong>Dim<\/strong> iAverage <strong>As<\/strong> Long <strong>On<\/strong> <strong>Error<\/strong> <strong>GoTo<\/strong> errorHandler <strong>Set<\/strong> sRange = Selection iAverage = WorksheetFunction.Average(Range(sRange.Address)) MsgBox iAverage <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> In de bovenstaande code hebben we de selectie gebruikt en deze vervolgens gespecificeerd in de variabele &#8220;sRange&#8221;. Vervolgens hebben we het adres van deze bereikvariabele gebruikt om het gemiddelde te verkrijgen.<\/p><h2 class=\"wp-block-heading\"> VBA-gemiddelde van alle bovenstaande cellen<\/h2><p> De volgende code neemt alle bovenstaande cellen en hun gemiddelde waarden en <a href=\"https:\/\/exceladvisor.org\/nl\/cel-waarde\/\">voert het resultaat in de geselecteerde cel in<\/a> .<\/p><pre class=\"wp-block-code\"> <code class=\"language-visual-basic\" lang=\"visual-basic\"><strong>Sub<\/strong> vba_auto_Average() <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.Average(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\"> Een dynamisch bereik middelen met behulp van VBA<\/h2><p> En op dezelfde manier kunt u <a href=\"https:\/\/exceladvisor.org\/nl\/genoemd-strand\/\">dynamisch bereik<\/a> gebruiken terwijl u VBA gebruikt om de waarden te middelen.<\/p><pre class=\"wp-block-code\"> <code class=\"language-visual-basic\" lang=\"visual-basic\">Sub vba_dynamic_range_average() Dim iFirst As String Dim iLast As String Dim iRange As Range On Error GoTo errorHandler iFirst = Selection.Offset(1, 1).Address iLast = Selection.Offset(5, 5).Address Set iRange = Range(iFirst &amp; \":\" &amp; iLast) ActiveCell = WorksheetFunction.Average(iRange) Exit Sub errorHandler: MsgBox \"make sure to select a valid range of cells\" End Sub<\/code><\/pre><h2 class=\"wp-block-heading\"> Het gemiddelde van een dynamische kolom of rij<\/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 en het gemiddelde van alle waarden die u daar heeft, overneemt.<\/p><pre class=\"wp-block-code\"> <code class=\"language-visual-basic\" lang=\"visual-basic\">Sub vba_dynamic_column() Dim iCol As Long On Error GoTo errorHandler iCol = ActiveCell.Column MsgBox WorksheetFunction.Average(Columns(iCol)) Exit Sub errorHandler: MsgBox \"make sure to select a valid range of cells\" End Sub<\/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.Average(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><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\/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\/som-1\/\">Somwaarden op in Excel 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-2147","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>\u25b7 Hoe waarden in Excel middelen via VBA?<\/title>\n<meta name=\"description\" content=\"In Excel kunt u VBA gebruiken om het gemiddelde van waarden in een celbereik of meerdere bereiken te berekenen. En in deze tutorial\" \/>\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\/gemiddeld-2\/\" \/>\n<meta property=\"og:locale\" content=\"nl_NL\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"\u25b7 Hoe waarden in Excel middelen via VBA?\" \/>\n<meta property=\"og:description\" content=\"In Excel kunt u VBA gebruiken om het gemiddelde van waarden in een celbereik of meerdere bereiken te berekenen. En in deze tutorial\" \/>\n<meta property=\"og:url\" content=\"https:\/\/exceladvisor.org\/nl\/gemiddeld-2\/\" \/>\n<meta property=\"og:site_name\" content=\"Excel Advisor\" \/>\n<meta property=\"article:modified_time\" content=\"2023-12-06T05:48:54+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/exceladvisor.org\/wp-content\/uploads\/2023\/08\/1-moyenne-en-vba-en-utilisant-la-fonction-de-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=\"3 minuten\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/exceladvisor.org\/nl\/gemiddeld-2\/\",\"url\":\"https:\/\/exceladvisor.org\/nl\/gemiddeld-2\/\",\"name\":\"\u25b7 Hoe waarden in Excel middelen via VBA?\",\"isPartOf\":{\"@id\":\"https:\/\/exceladvisor.org\/nl\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/exceladvisor.org\/nl\/gemiddeld-2\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/exceladvisor.org\/nl\/gemiddeld-2\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/exceladvisor.org\/wp-content\/uploads\/2023\/08\/1-moyenne-en-vba-en-utilisant-la-fonction-de-feuille-de-calcul.png\",\"datePublished\":\"2023-09-28T22:14:48+00:00\",\"dateModified\":\"2023-12-06T05:48:54+00:00\",\"description\":\"In Excel kunt u VBA gebruiken om het gemiddelde van waarden in een celbereik of meerdere bereiken te berekenen. En in deze tutorial\",\"breadcrumb\":{\"@id\":\"https:\/\/exceladvisor.org\/nl\/gemiddeld-2\/#breadcrumb\"},\"inLanguage\":\"nl-NL\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/exceladvisor.org\/nl\/gemiddeld-2\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"nl-NL\",\"@id\":\"https:\/\/exceladvisor.org\/nl\/gemiddeld-2\/#primaryimage\",\"url\":\"https:\/\/exceladvisor.org\/wp-content\/uploads\/2023\/08\/1-moyenne-en-vba-en-utilisant-la-fonction-de-feuille-de-calcul.png\",\"contentUrl\":\"https:\/\/exceladvisor.org\/wp-content\/uploads\/2023\/08\/1-moyenne-en-vba-en-utilisant-la-fonction-de-feuille-de-calcul.png\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/exceladvisor.org\/nl\/gemiddeld-2\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Thuis\",\"item\":\"https:\/\/exceladvisor.org\/nl\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Hoe gemiddelde waarden 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":"\u25b7 Hoe waarden in Excel middelen via VBA?","description":"In Excel kunt u VBA gebruiken om het gemiddelde van waarden in een celbereik of meerdere bereiken te berekenen. En in deze tutorial","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\/gemiddeld-2\/","og_locale":"nl_NL","og_type":"article","og_title":"\u25b7 Hoe waarden in Excel middelen via VBA?","og_description":"In Excel kunt u VBA gebruiken om het gemiddelde van waarden in een celbereik of meerdere bereiken te berekenen. En in deze tutorial","og_url":"https:\/\/exceladvisor.org\/nl\/gemiddeld-2\/","og_site_name":"Excel Advisor","article_modified_time":"2023-12-06T05:48:54+00:00","og_image":[{"url":"https:\/\/exceladvisor.org\/wp-content\/uploads\/2023\/08\/1-moyenne-en-vba-en-utilisant-la-fonction-de-feuille-de-calcul.png","type":"","width":"","height":""}],"twitter_card":"summary_large_image","twitter_misc":{"Geschatte leestijd":"3 minuten"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/exceladvisor.org\/nl\/gemiddeld-2\/","url":"https:\/\/exceladvisor.org\/nl\/gemiddeld-2\/","name":"\u25b7 Hoe waarden in Excel middelen via VBA?","isPartOf":{"@id":"https:\/\/exceladvisor.org\/nl\/#website"},"primaryImageOfPage":{"@id":"https:\/\/exceladvisor.org\/nl\/gemiddeld-2\/#primaryimage"},"image":{"@id":"https:\/\/exceladvisor.org\/nl\/gemiddeld-2\/#primaryimage"},"thumbnailUrl":"https:\/\/exceladvisor.org\/wp-content\/uploads\/2023\/08\/1-moyenne-en-vba-en-utilisant-la-fonction-de-feuille-de-calcul.png","datePublished":"2023-09-28T22:14:48+00:00","dateModified":"2023-12-06T05:48:54+00:00","description":"In Excel kunt u VBA gebruiken om het gemiddelde van waarden in een celbereik of meerdere bereiken te berekenen. En in deze tutorial","breadcrumb":{"@id":"https:\/\/exceladvisor.org\/nl\/gemiddeld-2\/#breadcrumb"},"inLanguage":"nl-NL","potentialAction":[{"@type":"ReadAction","target":["https:\/\/exceladvisor.org\/nl\/gemiddeld-2\/"]}]},{"@type":"ImageObject","inLanguage":"nl-NL","@id":"https:\/\/exceladvisor.org\/nl\/gemiddeld-2\/#primaryimage","url":"https:\/\/exceladvisor.org\/wp-content\/uploads\/2023\/08\/1-moyenne-en-vba-en-utilisant-la-fonction-de-feuille-de-calcul.png","contentUrl":"https:\/\/exceladvisor.org\/wp-content\/uploads\/2023\/08\/1-moyenne-en-vba-en-utilisant-la-fonction-de-feuille-de-calcul.png"},{"@type":"BreadcrumbList","@id":"https:\/\/exceladvisor.org\/nl\/gemiddeld-2\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Thuis","item":"https:\/\/exceladvisor.org\/nl\/"},{"@type":"ListItem","position":2,"name":"Hoe gemiddelde waarden 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\/2147","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=2147"}],"version-history":[{"count":1,"href":"https:\/\/exceladvisor.org\/nl\/wp-json\/wp\/v2\/pages\/2147\/revisions"}],"predecessor-version":[{"id":2572,"href":"https:\/\/exceladvisor.org\/nl\/wp-json\/wp\/v2\/pages\/2147\/revisions\/2572"}],"wp:attachment":[{"href":"https:\/\/exceladvisor.org\/nl\/wp-json\/wp\/v2\/media?parent=2147"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}