{"id":2207,"date":"2023-09-01T08:27:58","date_gmt":"2023-09-01T08:27:58","guid":{"rendered":"https:\/\/exceladvisor.org\/tr\/son-satirin-sutununun-hucresini-bulun\/"},"modified":"2023-12-10T06:04:26","modified_gmt":"2023-12-10T06:04:26","slug":"son-satirin-sutununun-hucresini-bulun","status":"publish","type":"page","link":"https:\/\/exceladvisor.org\/tr\/son-satirin-sutununun-hucresini-bulun\/","title":{"rendered":"Son sat\u0131r, s\u00fctun ve h\u00fccre nas\u0131l bulunur?"},"content":{"rendered":"<div class=\"excel-icerikten-once\" id=\"excel-3207144534\"><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>Son sat\u0131r\u0131, s\u00fctunu veya h\u00fccreyi bulmak i\u00e7in aral\u0131\u011f\u0131n &#8220;Son&#8221; \u00f6zelli\u011fini kullanabilirsiniz. End \u00f6zelli\u011fi, veri aral\u0131\u011f\u0131n\u0131n sonuna (bo\u015f olmayan son h\u00fccreye) gitmenizi sa\u011flar. Bununla hangi y\u00f6ne gitmek istedi\u011finize (yukar\u0131, a\u015fa\u011f\u0131, sola veya sa\u011fa) karar vermek i\u00e7in kullanabilece\u011finiz sabitler vard\u0131r.<\/p><h2 class=\"wp-block-heading\"> Excel&#8217;deki son sat\u0131r\u0131 bulmak i\u00e7in VBA&#8217;y\u0131 kullan\u0131n<\/h2><ol type=\"1\"><li> Son sat\u0131ra gitmek istedi\u011finiz h\u00fccreyi veya aral\u0131\u011f\u0131 ayarlay\u0131n.<\/li><li> Bundan sonra, \u00f6zelliklerin ve y\u00f6ntemlerin listesini almak i\u00e7in bir nokta girin.<\/li><li> \u201cSon\u201du se\u00e7in veya yaz\u0131n ve bir ba\u015flang\u0131\u00e7 parantezi girin.<\/li><li> Hangi arg\u00fcman\u0131 kullanmak istiyorsan\u0131z onu kullan\u0131n.<\/li><li> Ayr\u0131ca h\u00fccre adresini almak i\u00e7in adres \u00f6zelli\u011fini kullan\u0131n.<\/li><\/ol><pre class=\"wp-block-code\"> <code class=\"language-visual-basic\" lang=\"visual-basic\">MsgBox Range(\"A1\").End(xlDown).Address<\/code><\/pre><p> Yukar\u0131daki kodu \u00e7al\u0131\u015ft\u0131rd\u0131\u011f\u0131n\u0131zda, bo\u015f olmayan son h\u00fccrenin sat\u0131r numaras\u0131n\u0131 i\u00e7eren bir mesaj kutusu g\u00f6r\u00fcnt\u00fclenir. <\/p><div class=\"wp-block-image\"><figure class=\"aligncenter size-large is-resized\"><img loading=\"lazy\" decoding=\"async\" class=\"wp-image-54519\" src=\"https:\/\/exceladvisor.org\/wp-content\/uploads\/2023\/08\/1-utiliser-vba-pour-trouver-la-derniere-ligne.png\" sizes=\"auto, \" srcset=\"\" alt=\"son sat\u0131r\u0131 bulmak i\u00e7in vba kullan\u0131n\" width=\"628\" height=\"512\"><\/figure><\/div><h2 class=\"wp-block-heading\"> VBA&#8217;y\u0131 kullanarak son s\u00fctunu bulun<\/h2><p> \u015eimdi son s\u00fctunu bulmak istedi\u011finizi varsayal\u0131m. Bu durumda &#8220;xlDown&#8221; sabitini kullanmak yerine &#8220;xlRight&#8221;\u0131 kullanmal\u0131s\u0131n\u0131z, adresi almak yerine o h\u00fccreyi se\u00e7mek istiyorsan\u0131z &#8220;select&#8221; y\u00f6ntemini kullanabilirsiniz. A\u015fa\u011f\u0131daki y\u00f6ntemi g\u00f6z \u00f6n\u00fcnde bulundurun. <\/p><pre class=\"wp-block-code\"> <code class=\"language-visual-basic\" lang=\"visual-basic\">Range(\"A1\").End(xlToRight).Select<\/code><\/pre><div class=\"wp-block-image\"><figure class=\"aligncenter size-large is-resized\"><img loading=\"lazy\" decoding=\"async\" class=\"wp-image-54521\" src=\"https:\/\/exceladvisor.org\/wp-content\/uploads\/2023\/08\/2-utilisez-vba-pour-trouver-la-derniere-colonne.png\" sizes=\"auto, \" srcset=\"\" alt=\"son s\u00fctunu bulmak i\u00e7in vba'y\u0131 kullan\u0131n\" width=\"616\" height=\"563\"><\/figure><\/div><h2 class=\"wp-block-heading\"> Son h\u00fccreyi bul<\/h2><p> Ayn\u0131 y\u00f6ntemi kullanarak bo\u015f olmayan bir h\u00fccre olan son h\u00fccreyi de alabilirsiniz. Bu kodu yazmak i\u00e7in son sat\u0131r\u0131 ve son s\u00fctunu bilmeniz gerekir. <\/p><pre class=\"wp-block-code\"> <code class=\"language-visual-basic\" lang=\"visual-basic\">Sub vba_last_row() Dim lRow As Long Dim lColumn As Long lRow = Range(\"A1\").End(xlDown).Row lColumn = Range(\"A1\").End(xlToRight).Column Cells(lRow, lColumn).Select End Sub<\/code><\/pre><div class=\"wp-block-image\"><figure class=\"aligncenter size-large is-resized\"><img loading=\"lazy\" decoding=\"async\" class=\"wp-image-54522\" src=\"https:\/\/exceladvisor.org\/wp-content\/uploads\/2023\/08\/3-trouver-la-derniere-cellule.png\" sizes=\"auto, \" srcset=\"\" alt=\"son h\u00fccreyi bul\" width=\"793\" height=\"303\"><\/figure><\/div><p> Yukar\u0131daki kodu anlamak i\u00e7in onu \u00fc\u00e7 par\u00e7aya ay\u0131rmam\u0131z gerekiyor. <\/p><div class=\"wp-block-image\"><figure class=\"aligncenter size-large is-resized\"><img loading=\"lazy\" decoding=\"async\" class=\"wp-image-54523\" src=\"https:\/\/exceladvisor.org\/wp-content\/uploads\/2023\/08\/4-code-pour-trouver-la-derniere-ligne-et-colonne.png\" sizes=\"auto, \" srcset=\"\" alt=\"son sat\u0131r\u0131 ve s\u00fctunu bulma kodu\" width=\"484\" height=\"336\"><\/figure><\/div><ol type=\"1\"><li> \u0130LK b\u00f6l\u00fcmde sat\u0131r numaras\u0131n\u0131 ve s\u00fctun numaras\u0131n\u0131 saklamak i\u00e7in <a href=\"https:\/\/exceladvisor.org\/tr\/degiskenler\/\">iki de\u011fi\u015fken tan\u0131mlad\u0131n\u0131z<\/a> .<\/li><li> \u0130K\u0130NC\u0130 b\u00f6l\u00fcmde \u00f6nce &#8220;xlDown&#8221; ile &#8220;End&#8221;i, ard\u0131ndan Row \u00f6zelli\u011fini kullanarak sonuncunun sat\u0131r numaras\u0131n\u0131 elde ettiniz ve ayn\u0131 \u015fekilde &#8220;xlToRight&#8221; ile &#8220;End&#8221;i ve ard\u0131ndan Row \u00f6zelli\u011fini kulland\u0131n\u0131z. Son s\u00fctunun s\u00fctun numaras\u0131n\u0131 almak i\u00e7in \u201cS\u00fctun\u201d.<\/li><li> \u00dc\u00c7\u00dcNC\u00dc b\u00f6l\u00fcmde son s\u00fctun numaras\u0131 ve son sat\u0131r numaras\u0131n\u0131 kullanarak son h\u00fccreye bak\u0131n ve onu se\u00e7in.<\/li><\/ol><p class=\"qt-tip\"> <strong>Not:<\/strong> Farkl\u0131 <a href=\"https:\/\/exceladvisor.org\/tr\/calisma-sayfasi-1\/\">\u00e7al\u0131\u015fma sayfalar\u0131nda<\/a> son sat\u0131r ve son s\u00fctun y\u00f6ntemini kullanarak bir h\u00fccreyi se\u00e7mek istiyorsan\u0131z, \u00f6nce <a href=\"https:\/\/exceladvisor.org\/tr\/sayfayi-etkinlestir\/\">o \u00e7al\u0131\u015fma sayfas\u0131n\u0131 etkinle\u015ftirmeniz<\/a> gerekir.<\/p><h2 class=\"wp-block-heading\"> Find y\u00f6ntemini kullanan son sat\u0131r, s\u00fctun ve h\u00fccre<\/h2><p> \u00c7al\u0131\u015fma sayfas\u0131n\u0131n son sat\u0131r\u0131n\u0131, s\u00fctununu ve h\u00fccresini almak i\u00e7in range nesnesiyle birlikte find y\u00f6ntemini de kullanabilirsiniz. Sat\u0131r numaras\u0131n\u0131 bulmak i\u00e7in i\u015fte kod:<\/p><pre class=\"wp-block-code\"> <code class=\"language-visual-basic\" lang=\"visual-basic\">Sub vba_last_row() Dim iRow As Long iRow = Cells.Find(What:=\"*\", _ After:=Range(\"A1\"), _ LookAt:=xlPart, _ LookIn:=xlFormulas, _ SearchOrder:=xlByRows, _ SearchDirection:=xlPrevious, _ MatchCase:=False).Row MsgBox iRow End Sub<\/code><\/pre><p> S\u00fctun numaras\u0131 i\u00e7in:<\/p><pre class=\"wp-block-code\"> <code class=\"language-visual-basic\" lang=\"visual-basic\">Sub vba_last_row() Dim iColumn As Long iColumn = Cells.Find(What:=\"*\", _ After:=Range(\"A1\"), _ LookAt:=xlPart, _ LookIn:=xlFormulas, _ SearchOrder:=xlByColumns, _ SearchDirection:=xlPrevious, _ MatchCase:=False).Column MsgBox iColumn End Sub<\/code><\/pre><p> Son h\u00fccrenin h\u00fccre adresini almak i\u00e7in.<\/p><pre class=\"wp-block-code\"> <code class=\"language-visual-basic\" lang=\"visual-basic\">Sub vba_last_row() Dim iColumn As Long Dim iRow As Long iColumn = Cells.Find(What:=\"*\", _ After:=Range(\"A1\"), _ LookAt:=xlPart, _ LookIn:=xlFormulas, _ SearchOrder:=xlByColumns, _ SearchDirection:=xlPrevious, _ MatchCase:=False).Column iRow = Cells.Find(What:=\"*\", _ After:=Range(\"A1\"), _ LookAt:=xlPart, _ LookIn:=xlFormulas, _ SearchOrder:=xlByRows, _ SearchDirection:=xlPrevious, _ MatchCase:=False).Row Cells(iRow, iColumn).Address 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\/satir-sayisi\/\">Excel&#8217;de VBA kullanarak sat\u0131rlar\u0131 sayma<\/a><\/li><li> <a href=\"https:\/\/exceladvisor.org\/tr\/karakter-yazi-tipi\/\">Excel VBA yaz\u0131 tipi (renk, boyut, t\u00fcr ve kal\u0131n)<\/a><\/li><li> <a href=\"https:\/\/exceladvisor.org\/tr\/sutun-satirini-gosteri-gizle\/\">Excel VBA Bir s\u00fctunu veya sat\u0131r\u0131 gizleyin ve g\u00f6sterin<\/a><\/li><li> <a href=\"https:\/\/exceladvisor.org\/tr\/aralik-1\/\">Excel VBA Aral\u0131\u011f\u0131 \u2013 Aral\u0131k ve H\u00fccrelerle \u00c7al\u0131\u015fmak<\/a><\/li><li> <a href=\"https:\/\/exceladvisor.org\/tr\/sinirlar\/\">Excel&#8217;de VBA kullanarak h\u00fccreye kenarl\u0131klar uygulama<\/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-2207","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 son sat\u0131r\u0131, s\u00fctunu ve h\u00fccreyi nas\u0131l bulabilirim?<\/title>\n<meta name=\"description\" content=\"Bu e\u011fitimde, bir \u00e7al\u0131\u015fma sayfas\u0131n\u0131n son sat\u0131r\u0131n\u0131, son s\u00fctununu ve son h\u00fccresini bulmak i\u00e7in VBA&#039;n\u0131n nas\u0131l kullan\u0131laca\u011f\u0131 g\u00f6sterilir.\" \/>\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\/son-satirin-sutununun-hucresini-bulun\/\" \/>\n<meta property=\"og:locale\" content=\"tr_TR\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Excel&#039;de son sat\u0131r\u0131, s\u00fctunu ve h\u00fccreyi nas\u0131l bulabilirim?\" \/>\n<meta property=\"og:description\" content=\"Bu e\u011fitimde, bir \u00e7al\u0131\u015fma sayfas\u0131n\u0131n son sat\u0131r\u0131n\u0131, son s\u00fctununu ve son h\u00fccresini bulmak i\u00e7in VBA&#039;n\u0131n nas\u0131l kullan\u0131laca\u011f\u0131 g\u00f6sterilir.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/exceladvisor.org\/tr\/son-satirin-sutununun-hucresini-bulun\/\" \/>\n<meta property=\"og:site_name\" content=\"Excel Advisor\" \/>\n<meta property=\"article:modified_time\" content=\"2023-12-10T06:04:26+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/exceladvisor.org\/wp-content\/uploads\/2023\/08\/1-utiliser-vba-pour-trouver-la-derniere-ligne.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=\"3 dakika\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/exceladvisor.org\/tr\/son-satirin-sutununun-hucresini-bulun\/\",\"url\":\"https:\/\/exceladvisor.org\/tr\/son-satirin-sutununun-hucresini-bulun\/\",\"name\":\"Excel&#39;de son sat\u0131r\u0131, s\u00fctunu ve h\u00fccreyi nas\u0131l bulabilirim?\",\"isPartOf\":{\"@id\":\"https:\/\/exceladvisor.org\/tr\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/exceladvisor.org\/tr\/son-satirin-sutununun-hucresini-bulun\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/exceladvisor.org\/tr\/son-satirin-sutununun-hucresini-bulun\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/exceladvisor.org\/wp-content\/uploads\/2023\/08\/1-utiliser-vba-pour-trouver-la-derniere-ligne.png\",\"datePublished\":\"2023-09-01T08:27:58+00:00\",\"dateModified\":\"2023-12-10T06:04:26+00:00\",\"description\":\"Bu e\u011fitimde, bir \u00e7al\u0131\u015fma sayfas\u0131n\u0131n son sat\u0131r\u0131n\u0131, son s\u00fctununu ve son h\u00fccresini bulmak i\u00e7in VBA&#39;n\u0131n nas\u0131l kullan\u0131laca\u011f\u0131 g\u00f6sterilir.\",\"breadcrumb\":{\"@id\":\"https:\/\/exceladvisor.org\/tr\/son-satirin-sutununun-hucresini-bulun\/#breadcrumb\"},\"inLanguage\":\"tr\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/exceladvisor.org\/tr\/son-satirin-sutununun-hucresini-bulun\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"tr\",\"@id\":\"https:\/\/exceladvisor.org\/tr\/son-satirin-sutununun-hucresini-bulun\/#primaryimage\",\"url\":\"https:\/\/exceladvisor.org\/wp-content\/uploads\/2023\/08\/1-utiliser-vba-pour-trouver-la-derniere-ligne.png\",\"contentUrl\":\"https:\/\/exceladvisor.org\/wp-content\/uploads\/2023\/08\/1-utiliser-vba-pour-trouver-la-derniere-ligne.png\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/exceladvisor.org\/tr\/son-satirin-sutununun-hucresini-bulun\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Ev\",\"item\":\"https:\/\/exceladvisor.org\/tr\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Son sat\u0131r, s\u00fctun ve h\u00fccre nas\u0131l bulunur?\"}]},{\"@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 son sat\u0131r\u0131, s\u00fctunu ve h\u00fccreyi nas\u0131l bulabilirim?","description":"Bu e\u011fitimde, bir \u00e7al\u0131\u015fma sayfas\u0131n\u0131n son sat\u0131r\u0131n\u0131, son s\u00fctununu ve son h\u00fccresini bulmak i\u00e7in VBA&#39;n\u0131n nas\u0131l kullan\u0131laca\u011f\u0131 g\u00f6sterilir.","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\/son-satirin-sutununun-hucresini-bulun\/","og_locale":"tr_TR","og_type":"article","og_title":"Excel&#39;de son sat\u0131r\u0131, s\u00fctunu ve h\u00fccreyi nas\u0131l bulabilirim?","og_description":"Bu e\u011fitimde, bir \u00e7al\u0131\u015fma sayfas\u0131n\u0131n son sat\u0131r\u0131n\u0131, son s\u00fctununu ve son h\u00fccresini bulmak i\u00e7in VBA&#39;n\u0131n nas\u0131l kullan\u0131laca\u011f\u0131 g\u00f6sterilir.","og_url":"https:\/\/exceladvisor.org\/tr\/son-satirin-sutununun-hucresini-bulun\/","og_site_name":"Excel Advisor","article_modified_time":"2023-12-10T06:04:26+00:00","og_image":[{"url":"https:\/\/exceladvisor.org\/wp-content\/uploads\/2023\/08\/1-utiliser-vba-pour-trouver-la-derniere-ligne.png","type":"","width":"","height":""}],"twitter_card":"summary_large_image","twitter_misc":{"Tahmini okuma s\u00fcresi":"3 dakika"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/exceladvisor.org\/tr\/son-satirin-sutununun-hucresini-bulun\/","url":"https:\/\/exceladvisor.org\/tr\/son-satirin-sutununun-hucresini-bulun\/","name":"Excel&#39;de son sat\u0131r\u0131, s\u00fctunu ve h\u00fccreyi nas\u0131l bulabilirim?","isPartOf":{"@id":"https:\/\/exceladvisor.org\/tr\/#website"},"primaryImageOfPage":{"@id":"https:\/\/exceladvisor.org\/tr\/son-satirin-sutununun-hucresini-bulun\/#primaryimage"},"image":{"@id":"https:\/\/exceladvisor.org\/tr\/son-satirin-sutununun-hucresini-bulun\/#primaryimage"},"thumbnailUrl":"https:\/\/exceladvisor.org\/wp-content\/uploads\/2023\/08\/1-utiliser-vba-pour-trouver-la-derniere-ligne.png","datePublished":"2023-09-01T08:27:58+00:00","dateModified":"2023-12-10T06:04:26+00:00","description":"Bu e\u011fitimde, bir \u00e7al\u0131\u015fma sayfas\u0131n\u0131n son sat\u0131r\u0131n\u0131, son s\u00fctununu ve son h\u00fccresini bulmak i\u00e7in VBA&#39;n\u0131n nas\u0131l kullan\u0131laca\u011f\u0131 g\u00f6sterilir.","breadcrumb":{"@id":"https:\/\/exceladvisor.org\/tr\/son-satirin-sutununun-hucresini-bulun\/#breadcrumb"},"inLanguage":"tr","potentialAction":[{"@type":"ReadAction","target":["https:\/\/exceladvisor.org\/tr\/son-satirin-sutununun-hucresini-bulun\/"]}]},{"@type":"ImageObject","inLanguage":"tr","@id":"https:\/\/exceladvisor.org\/tr\/son-satirin-sutununun-hucresini-bulun\/#primaryimage","url":"https:\/\/exceladvisor.org\/wp-content\/uploads\/2023\/08\/1-utiliser-vba-pour-trouver-la-derniere-ligne.png","contentUrl":"https:\/\/exceladvisor.org\/wp-content\/uploads\/2023\/08\/1-utiliser-vba-pour-trouver-la-derniere-ligne.png"},{"@type":"BreadcrumbList","@id":"https:\/\/exceladvisor.org\/tr\/son-satirin-sutununun-hucresini-bulun\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Ev","item":"https:\/\/exceladvisor.org\/tr\/"},{"@type":"ListItem","position":2,"name":"Son sat\u0131r, s\u00fctun ve h\u00fccre nas\u0131l bulunur?"}]},{"@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\/2207","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=2207"}],"version-history":[{"count":1,"href":"https:\/\/exceladvisor.org\/tr\/wp-json\/wp\/v2\/pages\/2207\/revisions"}],"predecessor-version":[{"id":2726,"href":"https:\/\/exceladvisor.org\/tr\/wp-json\/wp\/v2\/pages\/2207\/revisions\/2726"}],"wp:attachment":[{"href":"https:\/\/exceladvisor.org\/tr\/wp-json\/wp\/v2\/media?parent=2207"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}