{"id":2208,"date":"2023-09-01T08:07:06","date_gmt":"2023-09-01T08:07:06","guid":{"rendered":"https:\/\/exceladvisor.org\/tr\/hucre-degeri\/"},"modified":"2023-12-10T06:06:18","modified_gmt":"2023-12-10T06:06:18","slug":"hucre-degeri","status":"publish","type":"page","link":"https:\/\/exceladvisor.org\/tr\/hucre-degeri\/","title":{"rendered":"Vba kullanarak bir h\u00fccreye de\u011fer nas\u0131l girilir?"},"content":{"rendered":"<div class=\"excel-icerikten-once\" id=\"excel-625769904\"><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 class=\"wp-block-heading\"><strong>\u00d6nemli Notlar<\/strong><\/p><ul><li> Value \u00f6zelli\u011fi her iki y\u00f6nde de kullan\u0131labilir (bir h\u00fccreden de\u011fer okuyup yazabilirsiniz).<\/li><li> Bir h\u00fccre de\u011feri ayarlamak i\u00e7in (ayn\u0131 zamanda almak ve d\u00fczenlemek i\u00e7in) <a href=\"https:\/\/exceladvisor.org\/tr\/aralik-1\/\">H\u00fccreler ve Aral\u0131k Nesnesini kullanarak bir h\u00fccreye ba\u015fvurabilirsiniz<\/a> .<\/li><\/ul><h2 class=\"wp-block-heading\"> H\u00fccre de\u011ferini ayarla<\/h2><p> H\u00fccre de\u011ferini ayarlamak i\u00e7in \u201cDe\u011fer\u201d \u00f6zelli\u011fini kullanman\u0131z, ard\u0131ndan ayarlamak istedi\u011finiz de\u011feri ayarlaman\u0131z gerekir. Burada bunu anlaman\u0131za yard\u0131mc\u0131 olmak i\u00e7in baz\u0131 \u00f6rnekler kulland\u0131m.<\/p><h3 class=\"wp-block-heading\"> 1. H\u00fccreye bir de\u011fer girin<\/h3><p> A1 h\u00fccresine &#8220;Bitti&#8221; de\u011ferini girmeniz gerekti\u011fini varsayal\u0131m. Bu durumda kod a\u015fa\u011f\u0131daki gibi olacakt\u0131r: <\/p><pre class=\"wp-block-code\"> <code class=\"language-visual-basic\" lang=\"visual-basic\">Range(\"A1\").Value = \"Done\"<\/code><\/pre><div class=\"wp-block-image\"><figure class=\"aligncenter size-large is-resized\"><img loading=\"lazy\" decoding=\"async\" class=\"wp-image-51319\" src=\"https:\/\/exceladvisor.org\/wp-content\/uploads\/2023\/08\/1-valeur-de-cellule-definie.png\" sizes=\"auto, \" srcset=\"\" alt=\"h\u00fccre-de\u011ferini ayarla\" width=\"311\" height=\"148\"><\/figure><\/div><p> G\u00f6rd\u00fc\u011f\u00fcn\u00fcz gibi \u00f6nce de\u011fer eklemek istedi\u011fim h\u00fccrenin adresini, ard\u0131ndan de\u011fer \u00f6zelli\u011fini ayarl\u0131yorum. Sonunda, &#8220;Bitti&#8221; de\u011ferini \u00e7ift t\u0131rnak i\u00e7inde e\u015fittir i\u015fareti &#8220;=&#8221; kullanarak atad\u0131m.<\/p><p> A\u015fa\u011f\u0131daki kod gibi &#8220;H\u00fccreler&#8221; \u00f6zelli\u011fini de kullanabilirsiniz.<\/p><pre class=\"wp-block-code\"> <code class=\"language-visual-basic\" lang=\"visual-basic\">Cells(1, 1).Value = \"Done\"<\/code><\/pre><p> Yukar\u0131daki kod ayn\u0131 zamanda A1 h\u00fccresine de at\u0131fta bulunur.<\/p><p> Bunun d\u0131\u015f\u0131nda kullanabilece\u011finiz bir yol daha var o da value \u00f6zelli\u011fini kullanmayarak de\u011feri do\u011frudan h\u00fccreye atamakt\u0131r.<\/p><pre class=\"wp-block-code\"> <code class=\"language-visual-basic\" lang=\"visual-basic\">Cells(1, 1) = \"Done\"<\/code><\/pre><p> Ancak h\u00fccreye de\u011fer girmek i\u00e7in value \u00f6zelli\u011finin kullan\u0131lmas\u0131 \u00f6nerilir.<\/p><p> \u015eimdi bir h\u00fccreye bir say\u0131 girmek istedi\u011finizi varsayal\u0131m. Bu durumda \u00e7ift t\u0131rnak kullanman\u0131za gerek yoktur. Kodu a\u015fa\u011f\u0131daki gibi yazabilirsiniz.<\/p><pre class=\"wp-block-code\"> <code class=\"language-visual-basic\" lang=\"visual-basic\">Range(\"A1\") = 99<\/code><\/pre><p> Ayr\u0131ca VBA kodunu kullanarak bir h\u00fccreye tarih veya <a href=\"https:\/\/exceladvisor.org\/tr\/zaman-damgasi\/\">zaman damgas\u0131<\/a> girmek i\u00e7in <a href=\"https:\/\/exceladvisor.org\/tr\/tarih-2\/\">TAR\u0130H<\/a> ve <a href=\"https:\/\/exceladvisor.org\/tr\/simdi\/\">\u015e\u0130MD\u0130<\/a> ( <a href=\"https:\/\/exceladvisor.org\/tr\/islevler\/\">VBA \u0130\u015flevleri<\/a> ) de kullanabilirsiniz.<\/p><pre class=\"wp-block-code\"> <code class=\"language-visual-basic\" lang=\"visual-basic\">Range(\"A1\").Value = Date Range(\"A2\").Value = Now<\/code><\/pre><p> Aktif h\u00fccreye bir de\u011fer girmek istiyorsan\u0131z ihtiyac\u0131n\u0131z olan kod \u015f\u00f6yle olacakt\u0131r:<\/p><pre class=\"wp-block-code\"> <code class=\"language-visual-basic\" lang=\"visual-basic\">ActiveCell.Value = Date<\/code><\/pre><h3 class=\"wp-block-heading\"> 2. Giri\u015f kutusunu kullanma<\/h3><p> Kullan\u0131c\u0131n\u0131n h\u00fccreye girilecek de\u011feri belirtmesini istiyorsan\u0131z giri\u015f kutusunu kullanabilirsiniz. A1 h\u00fccresine de\u011fer girmek istedi\u011finizi varsayal\u0131m, kod \u015f\u00f6yle g\u00f6r\u00fcnecektir: <\/p><div class=\"wp-block-image\"><figure class=\"aligncenter size-large is-resized\"><img loading=\"lazy\" decoding=\"async\" class=\"wp-image-51320\" src=\"https:\/\/exceladvisor.org\/wp-content\/uploads\/2023\/08\/2-utiliser-la-zone-de-saisie-pour-la-valeur.png\" sizes=\"auto, \" srcset=\"\" alt=\"de\u011fer i\u00e7in-giri\u015f kutusunu kullan\" width=\"496\" height=\"162\"><\/figure><\/div><pre class=\"wp-block-code\"> <code class=\"language-visual-basic\" lang=\"visual-basic\">Range(\"A1\").Value = _ InputBox(Prompt:=\"Type the value you want enter in A1.\")<\/code><\/pre><p> Yukar\u0131daki kodda A1 h\u00fccresinin de\u011feri, kullan\u0131c\u0131n\u0131n girdi\u011fi de\u011feri d\u00f6nd\u00fcren <a href=\"https:\/\/exceladvisor.org\/tr\/giris-alani\/\">giri\u015f kutusunun<\/a> d\u00f6nd\u00fcrd\u00fc\u011f\u00fc de\u011fere atanmaktad\u0131r.<\/p><h3 class=\"wp-block-heading\"> 3. Ba\u015fka bir h\u00fccreden<\/h3><p> H\u00fccre de\u011ferini ba\u015fka bir h\u00fccrenin de\u011ferini kullanarak da ayarlayabilirsiniz. Diyelim ki B1 h\u00fccresinden A1 h\u00fccresine de\u011fer eklemek istiyorsunuz, kod \u015f\u00f6yle olacakt\u0131r: <\/p><pre class=\"wp-block-code\"> <code class=\"language-visual-basic\" lang=\"visual-basic\">Range(\"A1\") = Range(\"B1\").Value<\/code><\/pre><div class=\"wp-block-image\"><figure class=\"aligncenter size-large is-resized\"><img loading=\"lazy\" decoding=\"async\" class=\"wp-image-51321\" src=\"https:\/\/exceladvisor.org\/wp-content\/uploads\/2023\/08\/3-definir-la-valeur-de-la-cellule-en-utilisant-la-valeur-dune-autre-cellule.png\" sizes=\"auto, \" srcset=\"\" alt=\"ba\u015fka bir h\u00fccrenin de\u011ferini kullanarak h\u00fccre de\u011ferini ayarlama\" width=\"521\" height=\"303\"><\/figure><\/div><p> Value \u00f6zelli\u011fini kullanmadan da B1 h\u00fccresine ba\u015fvurabilirsiniz.<\/p><pre class=\"wp-block-code\"> <code class=\"language-visual-basic\" lang=\"visual-basic\">Range(\"A1\") = Range(\"B1\")<\/code><\/pre><h3 class=\"wp-block-heading\"> 4. De\u011feri t\u00fcm aral\u0131kta ayarlay\u0131n<\/h3><p> Tek bir h\u00fccre yerine birden fazla h\u00fccreye veya h\u00fccre aral\u0131\u011f\u0131na de\u011fer girmek istedi\u011finizi d\u00fc\u015f\u00fcn\u00fcn, bu durumda a\u015fa\u011f\u0131daki gibi bir kod yazman\u0131z gerekiyor: <\/p><pre class=\"wp-block-code\"> <code class=\"language-visual-basic\" lang=\"visual-basic\">Range(\"A1:A10\").Value = Date Range(\"B1, B10\").Value = Now<\/code><\/pre><div class=\"wp-block-image\"><figure class=\"aligncenter size-large is-resized\"><img loading=\"lazy\" decoding=\"async\" class=\"wp-image-51322\" src=\"https:\/\/exceladvisor.org\/wp-content\/uploads\/2023\/08\/4-valeurs-de-consigne-dans-toute-la-plage.png\" sizes=\"auto, \" srcset=\"\" alt=\"de\u011feri t\u00fcm aral\u0131kta ayarlay\u0131n\" width=\"326\" height=\"162\"><\/figure><\/div><p> Kodun ilk sat\u0131r\u0131nda A1 h\u00fccresinden A10&#8217;a kadar t\u00fcm aral\u0131k bulunur ve ikinci sat\u0131rda iki B1 ve B10 h\u00fccresi vard\u0131r.<\/p><h2 class=\"wp-block-heading\"> H\u00fccre de\u011ferini al<\/h2><p> S\u00f6yledi\u011fim gibi, bir h\u00fccrenin de\u011ferini elde etmek i\u00e7in ayn\u0131 de\u011fer \u00f6zelli\u011fini kullanabilirsiniz.<\/p><h3 class=\"wp-block-heading\"> 1. ActiveCell&#8217;in de\u011ferini al\u0131n<\/h3><p> Diyelim ki aktif h\u00fccrenin de\u011ferini almak istiyorsunuz, bu durumda a\u015fa\u011f\u0131daki kodu kullanman\u0131z gerekiyor. <\/p><pre class=\"wp-block-code\"> <code class=\"language-visual-basic\" lang=\"visual-basic\">ActiveCell.Value = Range(\"A1\")<\/code><\/pre><div class=\"wp-block-image\"><figure class=\"aligncenter size-large is-resized\"><img loading=\"lazy\" decoding=\"async\" class=\"wp-image-51323\" src=\"https:\/\/exceladvisor.org\/wp-content\/uploads\/2023\/08\/5-obtenir-la-valeur-de-la-cellule.png\" sizes=\"auto, \" srcset=\"\" alt=\"h\u00fccre de\u011ferini al\" width=\"323\" height=\"150\"><\/figure><\/div><p> Yukar\u0131daki kodda, etkin h\u00fccrede de\u011fer \u00f6zelli\u011fini kulland\u0131n\u0131z ve ard\u0131ndan bu de\u011feri A1 h\u00fccresine atad\u0131n\u0131z.<\/p><h3 class=\"wp-block-heading\"> 2. Bir de\u011fi\u015fkene atay\u0131n<\/h3><p> Ayr\u0131ca bir h\u00fccreden bir de\u011fer al\u0131p bunu bir <a href=\"https:\/\/exceladvisor.org\/tr\/degiskenler\/\">de\u011fi\u015fkene<\/a> atayabilirsiniz. <\/p><div class=\"wp-block-image\"><figure class=\"aligncenter size-large is-resized\"><img loading=\"lazy\" decoding=\"async\" class=\"wp-image-51324\" src=\"https:\/\/exceladvisor.org\/wp-content\/uploads\/2023\/08\/6-affecter-a-une-variable.png\" sizes=\"auto, \" srcset=\"\" alt=\"bir de\u011fi\u015fkene atamak\" width=\"333\" height=\"171\"><\/figure><\/div><p> \u015eimdi yukar\u0131daki kodda <a href=\"https:\/\/exceladvisor.org\/tr\/degiskenler\/\">veri t\u00fcr\u00fc<\/a> olarak date olan \u201ci\u201d de\u011fi\u015fkenine sahipsiniz. Kodun ikinci sat\u0131r\u0131nda A1 h\u00fccresinin de\u011feri de\u011fi\u015fkene atan\u0131r.<\/p><h3 class=\"wp-block-heading\"> 3. Mesaj Kutusunda G\u00f6r\u00fcnt\u00fcleme<\/h3><p> \u015eimdi bir <a href=\"https:\/\/exceladvisor.org\/tr\/vba-mesaj-kutusu\/\">mesaj kutusu<\/a> kullanarak A1 h\u00fccresinin de\u011ferini g\u00f6r\u00fcnt\u00fclemek istedi\u011finizi d\u00fc\u015f\u00fcn\u00fcn. Bu durumda kod a\u015fa\u011f\u0131daki gibi olacakt\u0131r. <\/p><pre class=\"wp-block-code\"> <code class=\"language-visual-basic\" lang=\"visual-basic\">MsgBox Range(\"A1\").Value<\/code><\/pre><div class=\"wp-block-image\"><figure class=\"aligncenter size-large is-resized\"><img loading=\"lazy\" decoding=\"async\" class=\"wp-image-51325\" src=\"https:\/\/exceladvisor.org\/wp-content\/uploads\/2023\/08\/7-afficher-dans-une-msgbox.png\" sizes=\"auto, \" srcset=\"\" alt=\"msgbox'ta g\u00f6r\u00fcnt\u00fcle\" width=\"309\" height=\"163\"><\/figure><\/div><p> Yukar\u0131daki kodda mesaj kutusu A1 h\u00fccresindeki de\u011feri al\u0131p kullan\u0131c\u0131ya g\u00f6sterecektir. <\/p><div class=\"wp-block-image\"><figure class=\"aligncenter size-large is-resized\"><img loading=\"lazy\" decoding=\"async\" class=\"wp-image-51326\" src=\"https:\/\/exceladvisor.org\/wp-content\/uploads\/2023\/08\/8-msgbox-prennent-de-la-valeur.png\" sizes=\"auto, \" srcset=\"\" alt=\"msgbox-de\u011fer alma\" width=\"131\" height=\"155\"><\/figure><\/div><h2 class=\"wp-block-heading\"> H\u00fccre de\u011ferini de\u011fi\u015ftir<\/h2><p> Ayr\u0131ca bir h\u00fccre de\u011ferinde de de\u011fi\u015fiklik yapabilirsiniz, burada bunu anlaman\u0131za yard\u0131mc\u0131 olabilecek baz\u0131 \u00f6rnekleri payla\u015ft\u0131m.<\/p><h3 class=\"wp-block-heading\"> 1. Mevcut bir numaraya numara ekleyin<\/h3><p> Diyelim ki A1 h\u00fccresindeki say\u0131ya bir tane daha eklemek istiyorsan\u0131z a\u015fa\u011f\u0131daki kodu kullanabilirsiniz.<\/p><pre class=\"wp-block-code\"> <code class=\"language-visual-basic\" lang=\"visual-basic\">Range(\"A1\").Value = Range(\"A1\").Value + 1<\/code><\/pre><p> Yukar\u0131daki kod, A1 h\u00fccresinin de\u011ferini al\u0131p ona bir ekleyerek A1 h\u00fccresine bir de\u011fer atar. Ancak, yaln\u0131zca <a href=\"https:\/\/exceladvisor.org\/tr\/sayisal\/\">h\u00fccrede bir say\u0131 oldu\u011funda<\/a> de\u011fi\u015ftirilecek bir ko\u015fulu yazmak i\u00e7in <a href=\"https:\/\/exceladvisor.org\/tr\/eger-2\/\">VBA IF THEN ELSE<\/a> komutunu da kullanabilirsiniz.<\/p><pre class=\"wp-block-code\"> <code class=\"language-visual-basic\" lang=\"visual-basic\">If IsNumeric(Range(\"A1\").Value) Then Range(\"A1\").Value = Range(\"A1\").Value + 1 End If<\/code><\/pre><h3 class=\"wp-block-heading\"> 2. H\u00fccredeki ilk karakteri silin<\/h3><p> \u015eimdi a\u015fa\u011f\u0131daki kod, h\u00fccre de\u011ferinden ilk karakteri kald\u0131r\u0131r ve de\u011ferin geri kalan\u0131n\u0131 h\u00fccreye atar.<\/p><pre class=\"wp-block-code\"> <code class=\"language-visual-basic\" lang=\"visual-basic\">Range(\"A1\").Value = Right(Range(\"A1\").Value, Len(Range(\"A1\").Value) - 1)<\/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-2208","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 arac\u0131l\u0131\u011f\u0131yla h\u00fccreye de\u011fer nas\u0131l girilir?<\/title>\n<meta name=\"description\" content=\"Bu e\u011fitimde, bir h\u00fccreye de\u011fer ayarlamak (girmek), h\u00fccrenin de\u011ferini almak ve\" \/>\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\/hucre-degeri\/\" \/>\n<meta property=\"og:locale\" content=\"tr_TR\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"\u25b7 VBA arac\u0131l\u0131\u011f\u0131yla h\u00fccreye de\u011fer nas\u0131l girilir?\" \/>\n<meta property=\"og:description\" content=\"Bu e\u011fitimde, bir h\u00fccreye de\u011fer ayarlamak (girmek), h\u00fccrenin de\u011ferini almak ve\" \/>\n<meta property=\"og:url\" content=\"https:\/\/exceladvisor.org\/tr\/hucre-degeri\/\" \/>\n<meta property=\"og:site_name\" content=\"Excel Advisor\" \/>\n<meta property=\"article:modified_time\" content=\"2023-12-10T06:06:18+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/exceladvisor.org\/wp-content\/uploads\/2023\/08\/1-valeur-de-cellule-definie.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=\"5 dakika\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/exceladvisor.org\/tr\/hucre-degeri\/\",\"url\":\"https:\/\/exceladvisor.org\/tr\/hucre-degeri\/\",\"name\":\"\u25b7 VBA arac\u0131l\u0131\u011f\u0131yla h\u00fccreye de\u011fer nas\u0131l girilir?\",\"isPartOf\":{\"@id\":\"https:\/\/exceladvisor.org\/tr\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/exceladvisor.org\/tr\/hucre-degeri\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/exceladvisor.org\/tr\/hucre-degeri\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/exceladvisor.org\/wp-content\/uploads\/2023\/08\/1-valeur-de-cellule-definie.png\",\"datePublished\":\"2023-09-01T08:07:06+00:00\",\"dateModified\":\"2023-12-10T06:06:18+00:00\",\"description\":\"Bu e\u011fitimde, bir h\u00fccreye de\u011fer ayarlamak (girmek), h\u00fccrenin de\u011ferini almak ve\",\"breadcrumb\":{\"@id\":\"https:\/\/exceladvisor.org\/tr\/hucre-degeri\/#breadcrumb\"},\"inLanguage\":\"tr\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/exceladvisor.org\/tr\/hucre-degeri\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"tr\",\"@id\":\"https:\/\/exceladvisor.org\/tr\/hucre-degeri\/#primaryimage\",\"url\":\"https:\/\/exceladvisor.org\/wp-content\/uploads\/2023\/08\/1-valeur-de-cellule-definie.png\",\"contentUrl\":\"https:\/\/exceladvisor.org\/wp-content\/uploads\/2023\/08\/1-valeur-de-cellule-definie.png\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/exceladvisor.org\/tr\/hucre-degeri\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Ev\",\"item\":\"https:\/\/exceladvisor.org\/tr\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Vba kullanarak bir h\u00fccreye de\u011fer nas\u0131l girilir?\"}]},{\"@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 arac\u0131l\u0131\u011f\u0131yla h\u00fccreye de\u011fer nas\u0131l girilir?","description":"Bu e\u011fitimde, bir h\u00fccreye de\u011fer ayarlamak (girmek), h\u00fccrenin de\u011ferini almak ve","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\/hucre-degeri\/","og_locale":"tr_TR","og_type":"article","og_title":"\u25b7 VBA arac\u0131l\u0131\u011f\u0131yla h\u00fccreye de\u011fer nas\u0131l girilir?","og_description":"Bu e\u011fitimde, bir h\u00fccreye de\u011fer ayarlamak (girmek), h\u00fccrenin de\u011ferini almak ve","og_url":"https:\/\/exceladvisor.org\/tr\/hucre-degeri\/","og_site_name":"Excel Advisor","article_modified_time":"2023-12-10T06:06:18+00:00","og_image":[{"url":"https:\/\/exceladvisor.org\/wp-content\/uploads\/2023\/08\/1-valeur-de-cellule-definie.png","type":"","width":"","height":""}],"twitter_card":"summary_large_image","twitter_misc":{"Tahmini okuma s\u00fcresi":"5 dakika"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/exceladvisor.org\/tr\/hucre-degeri\/","url":"https:\/\/exceladvisor.org\/tr\/hucre-degeri\/","name":"\u25b7 VBA arac\u0131l\u0131\u011f\u0131yla h\u00fccreye de\u011fer nas\u0131l girilir?","isPartOf":{"@id":"https:\/\/exceladvisor.org\/tr\/#website"},"primaryImageOfPage":{"@id":"https:\/\/exceladvisor.org\/tr\/hucre-degeri\/#primaryimage"},"image":{"@id":"https:\/\/exceladvisor.org\/tr\/hucre-degeri\/#primaryimage"},"thumbnailUrl":"https:\/\/exceladvisor.org\/wp-content\/uploads\/2023\/08\/1-valeur-de-cellule-definie.png","datePublished":"2023-09-01T08:07:06+00:00","dateModified":"2023-12-10T06:06:18+00:00","description":"Bu e\u011fitimde, bir h\u00fccreye de\u011fer ayarlamak (girmek), h\u00fccrenin de\u011ferini almak ve","breadcrumb":{"@id":"https:\/\/exceladvisor.org\/tr\/hucre-degeri\/#breadcrumb"},"inLanguage":"tr","potentialAction":[{"@type":"ReadAction","target":["https:\/\/exceladvisor.org\/tr\/hucre-degeri\/"]}]},{"@type":"ImageObject","inLanguage":"tr","@id":"https:\/\/exceladvisor.org\/tr\/hucre-degeri\/#primaryimage","url":"https:\/\/exceladvisor.org\/wp-content\/uploads\/2023\/08\/1-valeur-de-cellule-definie.png","contentUrl":"https:\/\/exceladvisor.org\/wp-content\/uploads\/2023\/08\/1-valeur-de-cellule-definie.png"},{"@type":"BreadcrumbList","@id":"https:\/\/exceladvisor.org\/tr\/hucre-degeri\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Ev","item":"https:\/\/exceladvisor.org\/tr\/"},{"@type":"ListItem","position":2,"name":"Vba kullanarak bir h\u00fccreye de\u011fer nas\u0131l girilir?"}]},{"@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\/2208","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=2208"}],"version-history":[{"count":1,"href":"https:\/\/exceladvisor.org\/tr\/wp-json\/wp\/v2\/pages\/2208\/revisions"}],"predecessor-version":[{"id":2862,"href":"https:\/\/exceladvisor.org\/tr\/wp-json\/wp\/v2\/pages\/2208\/revisions\/2862"}],"wp:attachment":[{"href":"https:\/\/exceladvisor.org\/tr\/wp-json\/wp\/v2\/media?parent=2208"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}