{"id":1896,"date":"2023-10-29T08:17:45","date_gmt":"2023-10-29T08:17:45","guid":{"rendered":"https:\/\/exceladvisor.org\/nl\/xlsx-naar-csv\/"},"modified":"2023-12-06T05:57:50","modified_gmt":"2023-12-06T05:57:50","slug":"xlsx-naar-csv","status":"publish","type":"page","link":"https:\/\/exceladvisor.org\/nl\/xlsx-naar-csv\/","title":{"rendered":"Hoe een excel-bestand in csv-formaat opslaan?"},"content":{"rendered":"<div class=\"excel-voor-de-inhoud\" id=\"excel-3954018032\"><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>U kunt een Excel-bestand in verschillende formaten opslaan en van al deze formaten is CSV erg populair. Ja, u kunt uw Excel-bestand opslaan in CSV-formaat (XLSX en CSV). CSV staat voor Comma Separated Values waarbij de waarden gescheiden worden door <a href=\"https:\/\/exceladvisor.org\/nl\/cellen-samenvoegen-met-een-komma\/\">een komma<\/a> zoals je in het volgende voorbeeld kunt zien. <\/p><div class=\"wp-block-image\"><figure class=\"aligncenter size-full is-resized\"><img loading=\"lazy\" decoding=\"async\" class=\"wp-image-72497\" src=\"https:\/\/exceladvisor.org\/wp-content\/uploads\/2023\/08\/1-enregistrer-excel-au-format-csv.png\" sizes=\"auto, \" srcset=\"\" alt=\"bewaar-excel-als-csv\" width=\"707\" height=\"416\"><\/figure><\/div><h2 class=\"wp-block-heading\"> Sla een Excel-bestand (werkmap) op in CSV-indeling (door komma&#8217;s gescheiden waarden).<\/h2><ol><li> Open eerst het bestand dat u wilt opslaan in CSV-formaat. <br><img loading=\"lazy\" decoding=\"async\" title=\"2-open-het-bestand-om-op te slaan-als-csv\" src=\"https:\/\/exceladvisor.org\/wp-content\/uploads\/2023\/08\/2-ouvrir-le-fichier-a-enregistrer-au-format-csv.png\" sizes=\"auto, \" srcset=\"\" alt=\"open-file-to-save-as-csv\" width=\"621\" height=\"394\"><\/li><li> Ga daarna naar het tabblad Bestand en klik op de optie Opslaan als. <br><img loading=\"lazy\" decoding=\"async\" title=\"Registratieoptie met 3 klikken\" src=\"https:\/\/exceladvisor.org\/wp-content\/uploads\/2023\/08\/3-cliquez-sur-enregistrer-en-tant-quoption.png\" sizes=\"auto, \" srcset=\"\" alt=\"click-save-as-option\" width=\"457\" height=\"419\"><\/li><li> Geef nu de locatie op waar u het bestand wilt opslaan en selecteer in \u201cOpslaan als type\u201d \u201cCSV UTF-8 (door komma&#8217;s gescheiden)\u201d. <br><img loading=\"lazy\" decoding=\"async\" title=\"4-selecteer-csv-utf-8-om-het-bestand-op te slaan\" src=\"https:\/\/exceladvisor.org\/wp-content\/uploads\/2023\/08\/4-selectionnez-csv-utf-8-pour-enregistrer-le-fichier.png\" sizes=\"auto, \" srcset=\"\" alt=\"select-csv-utf-8-to-save-file\" width=\"550\" height=\"493\"><\/li><li> Klik aan het einde op OK om het bestand op te slaan.<\/li><\/ol><p> Nu kunt u zien dat beide bestanden (XLSX en CSV) op het bureaublad zijn opgeslagen. Maar er is een klein verschil tussen de pictogrammen waarmee u kunt identificeren welke de CSV-indeling heeft. <\/p><div class=\"wp-block-image\"><figure class=\"aligncenter size-full is-resized\"><img loading=\"lazy\" decoding=\"async\" class=\"wp-image-72501\" src=\"https:\/\/exceladvisor.org\/wp-content\/uploads\/2023\/08\/5-icones-excel-xlxs-et-csv.png\" sizes=\"auto, \" srcset=\"\" alt=\"excel-xlxs-en-csv-pictogrammen\" width=\"282\" height=\"166\"><\/figure><\/div><p> Als u nu een werkmap in CSV-indeling hebt opgeslagen, kunt u deze nog steeds openen omdat deze de CSV-indeling volledig ondersteunt. Maar u kunt de gegevens niet formatteren en functies zoals formules en functies gebruiken.<\/p><p> Wanneer u het CSV-bestand dat u zojuist vanuit Excel hebt opgeslagen opent met een Kladblok-toepassing, ziet u in het volgende voorbeeld ook komma&#8217;s tussen de waarden die we als tabel in Excel-indeling hebben. <\/p><div class=\"wp-block-image\"><figure class=\"aligncenter size-full is-resized\"><img loading=\"lazy\" decoding=\"async\" class=\"wp-image-72502\" src=\"https:\/\/exceladvisor.org\/wp-content\/uploads\/2023\/08\/6-ouvrir-csv-avec-bloc-notes.png\" sizes=\"auto, \" srcset=\"\" alt=\"open-csv-met-kladblok\" width=\"641\" height=\"420\"><\/figure><\/div><p> Er is \u00e9\u00e9n ding dat u moet weten tijdens het converteren van uw bestand van XLSX naar CSV: als de werkmap meer dan \u00e9\u00e9n blad bevat, slaat Excel alleen het huidige (actieve) blad op in CSV-indeling. De rest van de bladen wordt genegeerd en u moet ze afzonderlijk \u00e9\u00e9n voor \u00e9\u00e9n opslaan. <\/p><div class=\"wp-block-image\"><figure class=\"aligncenter size-full is-resized\"><img loading=\"lazy\" decoding=\"async\" class=\"wp-image-72503\" src=\"https:\/\/exceladvisor.org\/wp-content\/uploads\/2023\/08\/7-Excel-convertit-la-feuille-actuelle-en-csv-uniquement.png\" sizes=\"auto, \" srcset=\"\" alt=\"excel-converteert-huidige-blad-alleen-naar-csv\" width=\"722\" height=\"201\"><\/figure><\/div><h2 class=\"wp-block-heading\"> VBA-code om een XLSX naar CSV te converteren<\/h2><p> U kunt ook de volgende VBA-code gebruiken om een Excel-bestand in CSV-indeling op te slaan.<\/p><pre class=\"wp-block-code\"> <code class=\"language-visual-basic\" lang=\"visual-basic\">Sub xlsx_to_csv() Dim myPath As String, myName As String, myTime As String Dim myAddress As String myPath = ActiveWorkbook.Path myName = Left(ActiveWorkbook.Name, InStr(ActiveWorkbook.Name, \".\") - 1) myTime = Format(Now, \"DD_MM_YY_HH_MM_SS\") myAddress = myPath &amp; \"\" &amp; myName &amp; \"_\" &amp; myTime ActiveWorkbook.SaveAs Filename:=myAddress, FileFormat:=xlCSVUTF8 End Sub<\/code><\/pre><p> Met deze code wordt de actieve werkmap opgeslagen als een CSV op dezelfde locatie met dezelfde naam, met gebruikmaking van de huidige datum en tijd.<\/p><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\/excel-vooruitgang\/\">Geavanceerde Excel-zelfstudies<\/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\/herstel-corrupt-excel-bestand\/\">Reparatie beschadigd Excel-bestand<\/a><\/li><li> <a href=\"https:\/\/exceladvisor.org\/nl\/niet-opgeslagen-bestanden-herstellen\/\">Herstel niet-opgeslagen Excel-bestanden wanneer Excel crasht<\/a><\/li><li> <a href=\"https:\/\/exceladvisor.org\/nl\/verberg-toon-werkmap\/\">Een werkmap verbergen en weergeven in Excel<\/a><\/li><li> <a href=\"https:\/\/exceladvisor.org\/nl\/werkboek-kopieren\/\">Maak een kopie van de Excel-werkmap (bestand)<\/a><\/li><li> <a href=\"https:\/\/exceladvisor.org\/nl\/tekstbestand-openen\/\">Open een tekstbestand in Excel (.TXT)<\/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-1896","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 een Excel-bestand in CSV-formaat opslaan?<\/title>\n<meta name=\"description\" content=\"In deze tutorial leren we hoe u een Excel-bestand (werkmap) in CSV-formaat (XLSX naar CSV) kunt opslaan.\" \/>\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\/xlsx-naar-csv\/\" \/>\n<meta property=\"og:locale\" content=\"nl_NL\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"\u25b7 Hoe een Excel-bestand in CSV-formaat opslaan?\" \/>\n<meta property=\"og:description\" content=\"In deze tutorial leren we hoe u een Excel-bestand (werkmap) in CSV-formaat (XLSX naar CSV) kunt opslaan.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/exceladvisor.org\/nl\/xlsx-naar-csv\/\" \/>\n<meta property=\"og:site_name\" content=\"Excel Advisor\" \/>\n<meta property=\"article:modified_time\" content=\"2023-12-06T05:57:50+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/exceladvisor.org\/wp-content\/uploads\/2023\/08\/1-enregistrer-excel-au-format-csv.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=\"2 minuten\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/exceladvisor.org\/nl\/xlsx-naar-csv\/\",\"url\":\"https:\/\/exceladvisor.org\/nl\/xlsx-naar-csv\/\",\"name\":\"\u25b7 Hoe een Excel-bestand in CSV-formaat opslaan?\",\"isPartOf\":{\"@id\":\"https:\/\/exceladvisor.org\/nl\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/exceladvisor.org\/nl\/xlsx-naar-csv\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/exceladvisor.org\/nl\/xlsx-naar-csv\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/exceladvisor.org\/wp-content\/uploads\/2023\/08\/1-enregistrer-excel-au-format-csv.png\",\"datePublished\":\"2023-10-29T08:17:45+00:00\",\"dateModified\":\"2023-12-06T05:57:50+00:00\",\"description\":\"In deze tutorial leren we hoe u een Excel-bestand (werkmap) in CSV-formaat (XLSX naar CSV) kunt opslaan.\",\"breadcrumb\":{\"@id\":\"https:\/\/exceladvisor.org\/nl\/xlsx-naar-csv\/#breadcrumb\"},\"inLanguage\":\"nl-NL\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/exceladvisor.org\/nl\/xlsx-naar-csv\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"nl-NL\",\"@id\":\"https:\/\/exceladvisor.org\/nl\/xlsx-naar-csv\/#primaryimage\",\"url\":\"https:\/\/exceladvisor.org\/wp-content\/uploads\/2023\/08\/1-enregistrer-excel-au-format-csv.png\",\"contentUrl\":\"https:\/\/exceladvisor.org\/wp-content\/uploads\/2023\/08\/1-enregistrer-excel-au-format-csv.png\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/exceladvisor.org\/nl\/xlsx-naar-csv\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Thuis\",\"item\":\"https:\/\/exceladvisor.org\/nl\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Hoe een excel-bestand in csv-formaat opslaan?\"}]},{\"@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 een Excel-bestand in CSV-formaat opslaan?","description":"In deze tutorial leren we hoe u een Excel-bestand (werkmap) in CSV-formaat (XLSX naar CSV) kunt opslaan.","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\/xlsx-naar-csv\/","og_locale":"nl_NL","og_type":"article","og_title":"\u25b7 Hoe een Excel-bestand in CSV-formaat opslaan?","og_description":"In deze tutorial leren we hoe u een Excel-bestand (werkmap) in CSV-formaat (XLSX naar CSV) kunt opslaan.","og_url":"https:\/\/exceladvisor.org\/nl\/xlsx-naar-csv\/","og_site_name":"Excel Advisor","article_modified_time":"2023-12-06T05:57:50+00:00","og_image":[{"url":"https:\/\/exceladvisor.org\/wp-content\/uploads\/2023\/08\/1-enregistrer-excel-au-format-csv.png","type":"","width":"","height":""}],"twitter_card":"summary_large_image","twitter_misc":{"Geschatte leestijd":"2 minuten"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/exceladvisor.org\/nl\/xlsx-naar-csv\/","url":"https:\/\/exceladvisor.org\/nl\/xlsx-naar-csv\/","name":"\u25b7 Hoe een Excel-bestand in CSV-formaat opslaan?","isPartOf":{"@id":"https:\/\/exceladvisor.org\/nl\/#website"},"primaryImageOfPage":{"@id":"https:\/\/exceladvisor.org\/nl\/xlsx-naar-csv\/#primaryimage"},"image":{"@id":"https:\/\/exceladvisor.org\/nl\/xlsx-naar-csv\/#primaryimage"},"thumbnailUrl":"https:\/\/exceladvisor.org\/wp-content\/uploads\/2023\/08\/1-enregistrer-excel-au-format-csv.png","datePublished":"2023-10-29T08:17:45+00:00","dateModified":"2023-12-06T05:57:50+00:00","description":"In deze tutorial leren we hoe u een Excel-bestand (werkmap) in CSV-formaat (XLSX naar CSV) kunt opslaan.","breadcrumb":{"@id":"https:\/\/exceladvisor.org\/nl\/xlsx-naar-csv\/#breadcrumb"},"inLanguage":"nl-NL","potentialAction":[{"@type":"ReadAction","target":["https:\/\/exceladvisor.org\/nl\/xlsx-naar-csv\/"]}]},{"@type":"ImageObject","inLanguage":"nl-NL","@id":"https:\/\/exceladvisor.org\/nl\/xlsx-naar-csv\/#primaryimage","url":"https:\/\/exceladvisor.org\/wp-content\/uploads\/2023\/08\/1-enregistrer-excel-au-format-csv.png","contentUrl":"https:\/\/exceladvisor.org\/wp-content\/uploads\/2023\/08\/1-enregistrer-excel-au-format-csv.png"},{"@type":"BreadcrumbList","@id":"https:\/\/exceladvisor.org\/nl\/xlsx-naar-csv\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Thuis","item":"https:\/\/exceladvisor.org\/nl\/"},{"@type":"ListItem","position":2,"name":"Hoe een excel-bestand in csv-formaat opslaan?"}]},{"@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\/1896","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=1896"}],"version-history":[{"count":1,"href":"https:\/\/exceladvisor.org\/nl\/wp-json\/wp\/v2\/pages\/1896\/revisions"}],"predecessor-version":[{"id":2406,"href":"https:\/\/exceladvisor.org\/nl\/wp-json\/wp\/v2\/pages\/1896\/revisions\/2406"}],"wp:attachment":[{"href":"https:\/\/exceladvisor.org\/nl\/wp-json\/wp\/v2\/media?parent=1896"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}