{"id":2139,"date":"2023-09-29T01:09:10","date_gmt":"2023-09-29T01:09:10","guid":{"rendered":"https:\/\/exceladvisor.org\/tr\/1e-git\/"},"modified":"2023-12-10T06:03:58","modified_gmt":"2023-12-10T06:03:58","slug":"1e-git","status":"publish","type":"page","link":"https:\/\/exceladvisor.org\/tr\/1e-git\/","title":{"rendered":"Goto deyimi vba kodunda nas\u0131l kullan\u0131l\u0131r?"},"content":{"rendered":"<div class=\"excel-icerikten-once\" id=\"excel-107649765\"><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>VBA GoTo ifadesi, kod y\u00fcr\u00fctmenin prosed\u00fcrdeki belirli bir sat\u0131ra gitmesine yard\u0131mc\u0131 olur. Basit bir ifadeyle, goto ifadesiyle VBA, belirtti\u011finiz belirli bir sat\u0131ra atlar. \u00d6rne\u011fin ikinci sat\u0131ra atlamay\u0131 belirttiyseniz go komutu o sat\u0131ra atlayacakt\u0131r.<\/p><h2 class=\"wp-block-heading\"> Kodda VBA GoTo deyimi nas\u0131l kullan\u0131l\u0131r?<\/h2><ol type=\"1\"><li> \u00d6ncelikle goto deyimini kullanman\u0131z gerekiyor.<\/li><li> Bundan sonra VBA&#8217;n\u0131n goto&#8217;dan nereye gitmesini istedi\u011finizi tan\u0131mlaman\u0131z gerekir.<\/li><li> Daha sonra prosed\u00fcrde bu yeri olu\u015fturmak i\u00e7in etiketi olu\u015fturun.<\/li><li> Son olarak \u00e7al\u0131\u015ft\u0131rmak istedi\u011finiz kod sat\u0131rlar\u0131n\u0131 ekleyin. <\/li><\/ol><div class=\"wp-block-image\"><figure class=\"aligncenter size-large is-resized\"><img loading=\"lazy\" decoding=\"async\" class=\"wp-image-59662\" src=\"https:\/\/exceladvisor.org\/wp-content\/uploads\/2023\/08\/1-vba-aller-a-linstruction-dans-le-code.png\" sizes=\"auto, \" srcset=\"\" alt=\"vba-koddaki-ifadeye gitme\" width=\"593\" height=\"446\"><\/figure><\/div><pre class=\"wp-block-code\"> <code class=\"language-visual-basic\" lang=\"visual-basic\">Sub vba_goto() GoTo <strong>Last<\/strong> <strong>Range<\/strong> (\"A1\"). <strong>Select<\/strong> <strong>Last<\/strong> : <strong>Range<\/strong> (\"A12\"). <strong>Select<\/strong> <strong>End<\/strong> Sub<\/code><\/pre><h2 class=\"wp-block-heading\"> Bir kodu tekrarlamak i\u00e7in GoTo<\/h2><p> Bir dizi ko\u015fulu kullanarak kodu tekrarlamak i\u00e7in go to ifadesini de kullanabilirsiniz.<\/p><pre class=\"wp-block-code\"> <code class=\"language-visual-basic\" lang=\"visual-basic\"><strong>Sub<\/strong> goto_repeat() <strong>Dim<\/strong> iMessage As String Question:    iMessage = InputBox(\"what's the day today?\") <strong>If<\/strong> iMessage &lt;&gt; \"tuesday\" <strong>Then<\/strong>    MsgBox (\"wrong answer, try again.\") <strong>GoTo<\/strong> Question <strong>Else<\/strong>    MsgBox (\"that's the right answer.\") <strong>End<\/strong> <strong>If<\/strong> <strong>End<\/strong> <strong>Sub<\/strong><\/code><\/pre><p> Yukar\u0131daki kodu \u00e7al\u0131\u015ft\u0131rd\u0131\u011f\u0131n\u0131zda size g\u00fcn\u00fcn ad\u0131n\u0131 soracak ve &#8220;Sal\u0131&#8221; d\u0131\u015f\u0131nda bir \u015fey girerseniz soruyu tekrarlayacakt\u0131r. Koda bakarsan\u0131z goto ve <a href=\"https:\/\/exceladvisor.org\/tr\/eger-2\/\">if ifadelerini<\/a> kullanmam\u0131z gerekti\u011fini g\u00f6rebilirsiniz.<\/p><p> Art\u0131k kullan\u0131c\u0131 do\u011fru cevaptan ba\u015fka bir \u015fey girdi\u011finde, goto ifadesi VBA&#8217;y\u0131 kodu tekrarlamaya zorlar. (ancak bu t\u00fcr kodlar\u0131 her kulland\u0131\u011f\u0131n\u0131zda \u00e7ok dikkatli olmal\u0131s\u0131n\u0131z \u00e7\u00fcnk\u00fc sonsuz bir d\u00f6ng\u00fc olu\u015fturabilir.<\/p><h2 class=\"wp-block-heading\"> VBA Sona git<\/h2><p> Goto ifadesini kullanarak da bir alttan \u00e7\u0131kabilirsiniz. <\/p><div class=\"wp-block-image\"><figure class=\"aligncenter size-large is-resized\"><img loading=\"lazy\" decoding=\"async\" class=\"wp-image-59664\" src=\"https:\/\/exceladvisor.org\/wp-content\/uploads\/2023\/08\/2-vba-aller-a-la-fin.png\" sizes=\"auto, \" srcset=\"\" alt=\"vba-sonuna git\" width=\"461\" height=\"198\"><\/figure><\/div><p> Yukar\u0131daki kodda end deyiminden hemen \u00f6nce &#8220;last&#8221; etiketini kulland\u0131k ve VBA GoTo deyimine ula\u015ft\u0131\u011f\u0131nda VBA&#8217;n\u0131n prosed\u00fcr\u00fcn sonundaki &#8220;Last&#8221;a atlamas\u0131n\u0131 sa\u011fl\u0131yor.<\/p><h2 class=\"wp-block-heading\"> Ba\u015fka bir alt programdaki bir sat\u0131ra gitmek i\u00e7in GoTo ifadesi<\/h2><p> Asl\u0131nda, VBA&#8217;n\u0131n bir yerden ba\u015fka bir yere atlamas\u0131n\u0131 sa\u011flamak i\u00e7in, ifadeye gitmek olduk\u00e7a kullan\u0131\u015fl\u0131d\u0131r, ancak <a href=\"https:\/\/exceladvisor.org\/tr\/modul\/\">mod\u00fcldeki<\/a> ba\u015fka bir prosed\u00fcre atlamas\u0131n\u0131 sa\u011flamak m\u00fcmk\u00fcn de\u011fildir.<\/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\/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\/donguler\/\">VBA D\u00f6ng\u00fcleri (Ba\u015flang\u0131\u00e7tan \u0130leri Seviyeye)<\/a><\/li><li> <a href=\"https:\/\/exceladvisor.org\/tr\/davayi-sec\/\">VBA Se\u00e7me Vakas\u0131<\/a><\/li><li> <a href=\"https:\/\/exceladvisor.org\/tr\/bu-arada-yapmak\/\">Excel VBA Do While D\u00f6ng\u00fcs\u00fc ve (Do Loop While) \u2013 Bir K\u0131lavuz<\/a><\/li><li> <a href=\"https:\/\/exceladvisor.org\/tr\/dongu-yapraklari\/\">Excel&#8217;de VBA&#8217;y\u0131 kullanarak t\u00fcm sayfalar aras\u0131nda ge\u00e7i\u015f yap\u0131n<\/a><\/li><li> <a href=\"https:\/\/exceladvisor.org\/tr\/aralik-boyunca-dongu\/\">VBA (S\u00fctunlar, Sat\u0131r ve Kullan\u0131lm\u0131\u015fRange) kullanarak bir aral\u0131kta d\u00f6ng\u00fc yap\u0131n<\/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-2139","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 VBA kodunda GoTo deyimi nas\u0131l kullan\u0131l\u0131r?<\/title>\n<meta name=\"description\" content=\"Bu \u00f6\u011freticide, koddaki belirli bir sat\u0131ra gitmek i\u00e7in VBA kodundaki GoTo ifadesinin nas\u0131l kullan\u0131laca\u011f\u0131n\u0131 \u00f6\u011freneceksiniz.\" \/>\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\/1e-git\/\" \/>\n<meta property=\"og:locale\" content=\"tr_TR\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"\u25b7 VBA kodunda GoTo deyimi nas\u0131l kullan\u0131l\u0131r?\" \/>\n<meta property=\"og:description\" content=\"Bu \u00f6\u011freticide, koddaki belirli bir sat\u0131ra gitmek i\u00e7in VBA kodundaki GoTo ifadesinin nas\u0131l kullan\u0131laca\u011f\u0131n\u0131 \u00f6\u011freneceksiniz.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/exceladvisor.org\/tr\/1e-git\/\" \/>\n<meta property=\"og:site_name\" content=\"Excel Advisor\" \/>\n<meta property=\"article:modified_time\" content=\"2023-12-10T06:03:58+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/exceladvisor.org\/wp-content\/uploads\/2023\/08\/1-vba-aller-a-linstruction-dans-le-code.png\" \/>\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\/1e-git\/\",\"url\":\"https:\/\/exceladvisor.org\/tr\/1e-git\/\",\"name\":\"\u25b7 VBA kodunda GoTo deyimi nas\u0131l kullan\u0131l\u0131r?\",\"isPartOf\":{\"@id\":\"https:\/\/exceladvisor.org\/tr\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/exceladvisor.org\/tr\/1e-git\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/exceladvisor.org\/tr\/1e-git\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/exceladvisor.org\/wp-content\/uploads\/2023\/08\/1-vba-aller-a-linstruction-dans-le-code.png\",\"datePublished\":\"2023-09-29T01:09:10+00:00\",\"dateModified\":\"2023-12-10T06:03:58+00:00\",\"description\":\"Bu \u00f6\u011freticide, koddaki belirli bir sat\u0131ra gitmek i\u00e7in VBA kodundaki GoTo ifadesinin nas\u0131l kullan\u0131laca\u011f\u0131n\u0131 \u00f6\u011freneceksiniz.\",\"breadcrumb\":{\"@id\":\"https:\/\/exceladvisor.org\/tr\/1e-git\/#breadcrumb\"},\"inLanguage\":\"tr\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/exceladvisor.org\/tr\/1e-git\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"tr\",\"@id\":\"https:\/\/exceladvisor.org\/tr\/1e-git\/#primaryimage\",\"url\":\"https:\/\/exceladvisor.org\/wp-content\/uploads\/2023\/08\/1-vba-aller-a-linstruction-dans-le-code.png\",\"contentUrl\":\"https:\/\/exceladvisor.org\/wp-content\/uploads\/2023\/08\/1-vba-aller-a-linstruction-dans-le-code.png\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/exceladvisor.org\/tr\/1e-git\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Ev\",\"item\":\"https:\/\/exceladvisor.org\/tr\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Goto deyimi vba kodunda nas\u0131l kullan\u0131l\u0131r?\"}]},{\"@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":"\u25b7 VBA kodunda GoTo deyimi nas\u0131l kullan\u0131l\u0131r?","description":"Bu \u00f6\u011freticide, koddaki belirli bir sat\u0131ra gitmek i\u00e7in VBA kodundaki GoTo ifadesinin nas\u0131l kullan\u0131laca\u011f\u0131n\u0131 \u00f6\u011freneceksiniz.","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\/1e-git\/","og_locale":"tr_TR","og_type":"article","og_title":"\u25b7 VBA kodunda GoTo deyimi nas\u0131l kullan\u0131l\u0131r?","og_description":"Bu \u00f6\u011freticide, koddaki belirli bir sat\u0131ra gitmek i\u00e7in VBA kodundaki GoTo ifadesinin nas\u0131l kullan\u0131laca\u011f\u0131n\u0131 \u00f6\u011freneceksiniz.","og_url":"https:\/\/exceladvisor.org\/tr\/1e-git\/","og_site_name":"Excel Advisor","article_modified_time":"2023-12-10T06:03:58+00:00","og_image":[{"url":"https:\/\/exceladvisor.org\/wp-content\/uploads\/2023\/08\/1-vba-aller-a-linstruction-dans-le-code.png","type":"","width":"","height":""}],"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\/1e-git\/","url":"https:\/\/exceladvisor.org\/tr\/1e-git\/","name":"\u25b7 VBA kodunda GoTo deyimi nas\u0131l kullan\u0131l\u0131r?","isPartOf":{"@id":"https:\/\/exceladvisor.org\/tr\/#website"},"primaryImageOfPage":{"@id":"https:\/\/exceladvisor.org\/tr\/1e-git\/#primaryimage"},"image":{"@id":"https:\/\/exceladvisor.org\/tr\/1e-git\/#primaryimage"},"thumbnailUrl":"https:\/\/exceladvisor.org\/wp-content\/uploads\/2023\/08\/1-vba-aller-a-linstruction-dans-le-code.png","datePublished":"2023-09-29T01:09:10+00:00","dateModified":"2023-12-10T06:03:58+00:00","description":"Bu \u00f6\u011freticide, koddaki belirli bir sat\u0131ra gitmek i\u00e7in VBA kodundaki GoTo ifadesinin nas\u0131l kullan\u0131laca\u011f\u0131n\u0131 \u00f6\u011freneceksiniz.","breadcrumb":{"@id":"https:\/\/exceladvisor.org\/tr\/1e-git\/#breadcrumb"},"inLanguage":"tr","potentialAction":[{"@type":"ReadAction","target":["https:\/\/exceladvisor.org\/tr\/1e-git\/"]}]},{"@type":"ImageObject","inLanguage":"tr","@id":"https:\/\/exceladvisor.org\/tr\/1e-git\/#primaryimage","url":"https:\/\/exceladvisor.org\/wp-content\/uploads\/2023\/08\/1-vba-aller-a-linstruction-dans-le-code.png","contentUrl":"https:\/\/exceladvisor.org\/wp-content\/uploads\/2023\/08\/1-vba-aller-a-linstruction-dans-le-code.png"},{"@type":"BreadcrumbList","@id":"https:\/\/exceladvisor.org\/tr\/1e-git\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Ev","item":"https:\/\/exceladvisor.org\/tr\/"},{"@type":"ListItem","position":2,"name":"Goto deyimi vba kodunda nas\u0131l kullan\u0131l\u0131r?"}]},{"@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\/2139","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=2139"}],"version-history":[{"count":1,"href":"https:\/\/exceladvisor.org\/tr\/wp-json\/wp\/v2\/pages\/2139\/revisions"}],"predecessor-version":[{"id":2684,"href":"https:\/\/exceladvisor.org\/tr\/wp-json\/wp\/v2\/pages\/2139\/revisions\/2684"}],"wp:attachment":[{"href":"https:\/\/exceladvisor.org\/tr\/wp-json\/wp\/v2\/media?parent=2139"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}