{"id":1648,"date":"2023-11-13T20:26:28","date_gmt":"2023-11-13T20:26:28","guid":{"rendered":"https:\/\/exceladvisor.org\/tr\/temiz-sayfa\/"},"modified":"2023-12-10T06:06:21","modified_gmt":"2023-12-10T06:06:21","slug":"temiz-sayfa","status":"publish","type":"page","link":"https:\/\/exceladvisor.org\/tr\/temiz-sayfa\/","title":{"rendered":"Vba kullanarak bir sayfan\u0131n tamam\u0131 nas\u0131l temi\u0307zleni\u0307r?"},"content":{"rendered":"<div class=\"excel-icerikten-once\" id=\"excel-1763410615\"><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>Tek seferde VBA kodunu kullanarak bir sayfan\u0131n tamam\u0131n\u0131 temizlemek i\u00e7in iki \u015feyi kullanman\u0131z gerekir; ilki CLEAR y\u00f6ntemi ve ard\u0131ndan \u00e7al\u0131\u015fma sayfas\u0131ndaki t\u00fcm h\u00fccrelere ba\u015fvurmak i\u00e7in CELLS&#8217;tir .<\/p><h2 class=\"wp-block-heading\"> Etkin sayfay\u0131 temizle<\/h2><p> Diyelim ki aktivasyon sayfas\u0131n\u0131n t\u00fcm i\u00e7eri\u011fini temizlemek istiyorsan\u0131z kod a\u015fa\u011f\u0131daki gibi olacakt\u0131r.<\/p><pre class=\"wp-block-code\"> <code class=\"language-visual-basic\" lang=\"visual-basic\">Cells.Clear<\/code><\/pre><p> Bu kodu \u00e7al\u0131\u015ft\u0131rd\u0131\u011f\u0131n\u0131zda, aktif sayfadaki t\u00fcm h\u00fccrelerdeki her \u015fey temizlenecektir, daha \u00f6nce de belirtti\u011fim gibi, \u00e7al\u0131\u015fma sayfas\u0131n\u0131n tamam\u0131na at\u0131fta bulunmak i\u00e7in clear kulland\u0131k ve onu temizlemek i\u00e7in clear kulland\u0131k.<\/p><h2 class=\"wp-block-heading\"> Belirli bir sayfay\u0131 temizle<\/h2><p> Bir sayfay\u0131 temizlemek i\u00e7in o sayfan\u0131n etkinle\u015ftirilmesi gerekti\u011fine dikkat etmeniz gereken bir \u015fey var. Diyelim ki &#8220;Sayfa1&#8243;i temizlemek istiyorsunuz, kod \u015f\u00f6yle olacakt\u0131r:<\/p><pre class=\"wp-block-code\"> <code class=\"language-visual-basic\" lang=\"visual-basic\">Sheets(\"Sheet1\").Activate Cells.Clear<\/code><\/pre><p> Bu kodda ilk sat\u0131r \u201cSayfa1\u201di etkinle\u015ftirir ve ikinci sat\u0131r her \u015feyi temizler.<\/p><h2 class=\"wp-block-heading\"> Temizlenecek di\u011fer \u015feyler<\/h2><p> Farkl\u0131 \u015feyleri silmek i\u00e7in de a\u015fa\u011f\u0131daki y\u00f6ntemleri kullanabilirsiniz.<\/p><pre class=\"wp-block-code\"> <code class=\"language-visual-basic\" lang=\"visual-basic\">Cells.ClearContents 'to clear contents Cells.ClearComments 'to clear Comments Cells.ClearFormats 'to clears formatting Cells.ClearHyperlinks 'to clear hyperlinks Cells.ClearNotes 'to clear notes Cells.ClearOutline 'to clears outline<\/code><\/pre><h2 class=\"wp-block-heading\"> Belirli bir \u00e7al\u0131\u015fma kitab\u0131ndan bir sayfay\u0131 silme<\/h2><p> A\u015fa\u011f\u0131daki kod &#8220;Kitap1&#8221; \u00e7al\u0131\u015fma kitab\u0131na ba\u015fvurabilir ve &#8220;Sayfa1&#8221; sayfas\u0131n\u0131 temizleyebilir. Ancak <a href=\"https:\/\/exceladvisor.org\/tr\/makro-2yi-calistir\/\">bu kodu \u00e7al\u0131\u015ft\u0131r\u0131rken<\/a> \u00e7al\u0131\u015fma kitab\u0131n\u0131n a\u00e7\u0131k oldu\u011fundan emin olun.<\/p><pre class=\"wp-block-code\"> <code class=\"language-visual-basic\" lang=\"visual-basic\">Workbooks(\"Book1\").Sheets(\"Sheet1\").Activate Cells.Clear<\/code><\/pre><p> Bu kod \u00f6ncelikle kitab\u0131n \u201cSayfa1\u201dini aktif hale getirir ve siler.<\/p><h2 class=\"wp-block-heading\"> Kapal\u0131 bir \u00e7al\u0131\u015fma kitab\u0131ndan bir sayfay\u0131 silme<\/h2><p> Ve a\u015fa\u011f\u0131daki kodda, belirli bir konumda saklanan \u201c\u00f6rnek dosya\u201d \u00e7al\u0131\u015fma kitab\u0131n\u0131n \u201cSayfa1\u201dinden bahsettik.<\/p><pre class=\"wp-block-code\"> <code class=\"language-visual-basic\" lang=\"visual-basic\">Sub vba_clear_sheet() Dim wb As Workbook Application.ScreenUpdating = False Set wb = Workbooks.Open(\"C:\\Users\\Dell\\Desktop\\sample-file.xlsx\") wb.Sheets(\"Sheet1\").Activate Cells.Clear wb.Close SaveChanges:=True Application.ScreenUpdating = False 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\/tr\/vba\/\">VBA nedir<\/a><h2 class=\"gb-headline gb-headline-665e5f6b gb-headline-text gb-headline-mt-heading\"> \u0130lgili e\u011fitimler <\/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\/tr\/sayfayi-kopyala\/\">VBA&#8217;y\u0131 kullanarak Excel&#8217;de bir sayfay\u0131 kopyalay\u0131n ve ta\u015f\u0131y\u0131n<\/a><\/li><li> <a href=\"https:\/\/exceladvisor.org\/tr\/yapraklari-say\/\">Excel&#8217;de VBA kullanan COUNT Sayfa<\/a><\/li><li> <a href=\"https:\/\/exceladvisor.org\/tr\/bir-sayfayi-sil-1\/\">Excel&#8217;de VBA kullanarak bir SAYFAYI S\u0130L\u0130N<\/a><\/li><li> <a href=\"https:\/\/exceladvisor.org\/tr\/sayfayi-gizle\/\">Excel&#8217;de VBA kullanarak bir sayfay\u0131 gizleme ve g\u00f6sterme<\/a><\/li><li> <a href=\"https:\/\/exceladvisor.org\/tr\/yapragi-korumak\/\">Excel&#8217;de VBA kullanarak bir sayfay\u0131 KORUMA ve KORUMADAN KALDIRMA<\/a><\/li><li> <a href=\"https:\/\/exceladvisor.org\/tr\/sayfayi-yeniden-adlandir\/\">Excel&#8217;de VBA kullanarak bir sayfay\u0131 YEN\u0130DEN ADLANDIRIN<\/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-1648","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>Excel&#039;de VBA kullanarak bir sayfan\u0131n tamam\u0131n\u0131 nas\u0131l TEM\u0130ZLEY\u0130M?<\/title>\n<meta name=\"description\" content=\"Bu e\u011fitici, VBA kodunu kullanarak bir e-tablonun tamam\u0131n\u0131 nas\u0131l temizleyece\u011finizi g\u00f6sterir. Ayr\u0131ca size farkl\u0131 yollar da g\u00f6sterir\" \/>\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\/tr\/temiz-sayfa\/\" \/>\n<meta property=\"og:locale\" content=\"tr_TR\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Excel&#039;de VBA kullanarak bir sayfan\u0131n tamam\u0131n\u0131 nas\u0131l TEM\u0130ZLEY\u0130M?\" \/>\n<meta property=\"og:description\" content=\"Bu e\u011fitici, VBA kodunu kullanarak bir e-tablonun tamam\u0131n\u0131 nas\u0131l temizleyece\u011finizi g\u00f6sterir. Ayr\u0131ca size farkl\u0131 yollar da g\u00f6sterir\" \/>\n<meta property=\"og:url\" content=\"https:\/\/exceladvisor.org\/tr\/temiz-sayfa\/\" \/>\n<meta property=\"og:site_name\" content=\"Excel Advisor\" \/>\n<meta property=\"article:modified_time\" content=\"2023-12-10T06:06:21+00:00\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Tahmini okuma s\u00fcresi\" \/>\n\t<meta name=\"twitter:data1\" content=\"2 dakika\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/exceladvisor.org\/tr\/temiz-sayfa\/\",\"url\":\"https:\/\/exceladvisor.org\/tr\/temiz-sayfa\/\",\"name\":\"Excel&#39;de VBA kullanarak bir sayfan\u0131n tamam\u0131n\u0131 nas\u0131l TEM\u0130ZLEY\u0130M?\",\"isPartOf\":{\"@id\":\"https:\/\/exceladvisor.org\/tr\/#website\"},\"datePublished\":\"2023-11-13T20:26:28+00:00\",\"dateModified\":\"2023-12-10T06:06:21+00:00\",\"description\":\"Bu e\u011fitici, VBA kodunu kullanarak bir e-tablonun tamam\u0131n\u0131 nas\u0131l temizleyece\u011finizi g\u00f6sterir. Ayr\u0131ca size farkl\u0131 yollar da g\u00f6sterir\",\"breadcrumb\":{\"@id\":\"https:\/\/exceladvisor.org\/tr\/temiz-sayfa\/#breadcrumb\"},\"inLanguage\":\"tr\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/exceladvisor.org\/tr\/temiz-sayfa\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/exceladvisor.org\/tr\/temiz-sayfa\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Ev\",\"item\":\"https:\/\/exceladvisor.org\/tr\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Vba kullanarak bir sayfan\u0131n tamam\u0131 nas\u0131l temi\u0307zleni\u0307r?\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/exceladvisor.org\/tr\/#website\",\"url\":\"https:\/\/exceladvisor.org\/tr\/\",\"name\":\"Excel Advisor\",\"description\":\"Veri hakimiyetine y\u00f6nelik nihai rehberiniz!\",\"publisher\":{\"@id\":\"https:\/\/exceladvisor.org\/tr\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/exceladvisor.org\/tr\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"tr\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/exceladvisor.org\/tr\/#organization\",\"name\":\"Excel Advisor\",\"url\":\"https:\/\/exceladvisor.org\/tr\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"tr\",\"@id\":\"https:\/\/exceladvisor.org\/tr\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/exceladvisor.org\/tr\/wp-content\/uploads\/2023\/12\/exceladvisor.org_.png\",\"contentUrl\":\"https:\/\/exceladvisor.org\/tr\/wp-content\/uploads\/2023\/12\/exceladvisor.org_.png\",\"width\":105,\"height\":36,\"caption\":\"Excel Advisor\"},\"image\":{\"@id\":\"https:\/\/exceladvisor.org\/tr\/#\/schema\/logo\/image\/\"}}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Excel&#39;de VBA kullanarak bir sayfan\u0131n tamam\u0131n\u0131 nas\u0131l TEM\u0130ZLEY\u0130M?","description":"Bu e\u011fitici, VBA kodunu kullanarak bir e-tablonun tamam\u0131n\u0131 nas\u0131l temizleyece\u011finizi g\u00f6sterir. Ayr\u0131ca size farkl\u0131 yollar da g\u00f6sterir","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\/tr\/temiz-sayfa\/","og_locale":"tr_TR","og_type":"article","og_title":"Excel&#39;de VBA kullanarak bir sayfan\u0131n tamam\u0131n\u0131 nas\u0131l TEM\u0130ZLEY\u0130M?","og_description":"Bu e\u011fitici, VBA kodunu kullanarak bir e-tablonun tamam\u0131n\u0131 nas\u0131l temizleyece\u011finizi g\u00f6sterir. Ayr\u0131ca size farkl\u0131 yollar da g\u00f6sterir","og_url":"https:\/\/exceladvisor.org\/tr\/temiz-sayfa\/","og_site_name":"Excel Advisor","article_modified_time":"2023-12-10T06:06:21+00:00","twitter_card":"summary_large_image","twitter_misc":{"Tahmini okuma s\u00fcresi":"2 dakika"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/exceladvisor.org\/tr\/temiz-sayfa\/","url":"https:\/\/exceladvisor.org\/tr\/temiz-sayfa\/","name":"Excel&#39;de VBA kullanarak bir sayfan\u0131n tamam\u0131n\u0131 nas\u0131l TEM\u0130ZLEY\u0130M?","isPartOf":{"@id":"https:\/\/exceladvisor.org\/tr\/#website"},"datePublished":"2023-11-13T20:26:28+00:00","dateModified":"2023-12-10T06:06:21+00:00","description":"Bu e\u011fitici, VBA kodunu kullanarak bir e-tablonun tamam\u0131n\u0131 nas\u0131l temizleyece\u011finizi g\u00f6sterir. Ayr\u0131ca size farkl\u0131 yollar da g\u00f6sterir","breadcrumb":{"@id":"https:\/\/exceladvisor.org\/tr\/temiz-sayfa\/#breadcrumb"},"inLanguage":"tr","potentialAction":[{"@type":"ReadAction","target":["https:\/\/exceladvisor.org\/tr\/temiz-sayfa\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/exceladvisor.org\/tr\/temiz-sayfa\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Ev","item":"https:\/\/exceladvisor.org\/tr\/"},{"@type":"ListItem","position":2,"name":"Vba kullanarak bir sayfan\u0131n tamam\u0131 nas\u0131l temi\u0307zleni\u0307r?"}]},{"@type":"WebSite","@id":"https:\/\/exceladvisor.org\/tr\/#website","url":"https:\/\/exceladvisor.org\/tr\/","name":"Excel Advisor","description":"Veri hakimiyetine y\u00f6nelik nihai rehberiniz!","publisher":{"@id":"https:\/\/exceladvisor.org\/tr\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/exceladvisor.org\/tr\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"tr"},{"@type":"Organization","@id":"https:\/\/exceladvisor.org\/tr\/#organization","name":"Excel Advisor","url":"https:\/\/exceladvisor.org\/tr\/","logo":{"@type":"ImageObject","inLanguage":"tr","@id":"https:\/\/exceladvisor.org\/tr\/#\/schema\/logo\/image\/","url":"https:\/\/exceladvisor.org\/tr\/wp-content\/uploads\/2023\/12\/exceladvisor.org_.png","contentUrl":"https:\/\/exceladvisor.org\/tr\/wp-content\/uploads\/2023\/12\/exceladvisor.org_.png","width":105,"height":36,"caption":"Excel Advisor"},"image":{"@id":"https:\/\/exceladvisor.org\/tr\/#\/schema\/logo\/image\/"}}]}},"yoast_meta":{"yoast_wpseo_title":"","yoast_wpseo_metadesc":"","yoast_wpseo_canonical":""},"_links":{"self":[{"href":"https:\/\/exceladvisor.org\/tr\/wp-json\/wp\/v2\/pages\/1648","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/exceladvisor.org\/tr\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/exceladvisor.org\/tr\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/exceladvisor.org\/tr\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/exceladvisor.org\/tr\/wp-json\/wp\/v2\/comments?post=1648"}],"version-history":[{"count":1,"href":"https:\/\/exceladvisor.org\/tr\/wp-json\/wp\/v2\/pages\/1648\/revisions"}],"predecessor-version":[{"id":2865,"href":"https:\/\/exceladvisor.org\/tr\/wp-json\/wp\/v2\/pages\/1648\/revisions\/2865"}],"wp:attachment":[{"href":"https:\/\/exceladvisor.org\/tr\/wp-json\/wp\/v2\/media?parent=1648"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}