{"id":889,"date":"2024-07-08T09:17:24","date_gmt":"2024-07-08T06:17:24","guid":{"rendered":"https:\/\/mryed.com\/?p=889"},"modified":"2024-07-08T09:17:25","modified_gmt":"2024-07-08T06:17:25","slug":"excel-sayiyi-yaziya-cevirme","status":"publish","type":"post","link":"https:\/\/mryed.com\/en\/yazilim\/excel-sayiyi-yaziya-cevirme\/","title":{"rendered":"Convert Number to Text in Excel - Excel Script"},"content":{"rendered":"<p>In Excel, we especially want to convert data such as money into text. There are macro and macro-free methods for this. In this article, I will talk about the process of converting the number to text in excel using scripts.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Convert Number to Text in Excel<\/h2>\n\n\n\n<p>I have excel <a href=\"https:\/\/learn.microsoft.com\/en-us\/office\/dev\/scripts\/overview\/excel\">betik<\/a> for this process I'm going to use the macro operation, which is also used for this. But there are some problems when you use a macro to convert a number to text. When you share this document with someone else, that person is constantly given a warning for security reasons. Macros do not work unless the user accepts these warnings. Users who are uneasy because of the warning may not approve this process.<\/p>\n\n\n\n<p>The code below is a script that converts numbers to text. It takes the number from cell A1 and divides it into three parts. Then it converts the digit by digit to text. When the function finishes all operations, it returns the text and writes it to cell B1. Since I converted currency, I wrote \"TL\" at the end of the text. <\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>function main(workbook: ExcelScript.Workbook) {\n  let selectedSheet = workbook.getActiveWorksheet();\n  let sayiIndex = selectedSheet.getRange(\"A1\");\n  let metinIndex = selectedSheet.getRange(\"B1\");\n\n  let sayi = sayiIndex.getValue();\n  let metin = Say\u0131y\u0131Yaz\u0131ya\u00c7evir(parseFloat(sayi.toString())) + \" TL\";\n\n  metinIndex.setValue(metin);\n}\n\n\nfunction Say\u0131y\u0131Yaz\u0131ya\u00c7evir(sayi: number): string {\n\n  let birler = &#91;\"\", \"bir\", \"iki\", \"\u00fc\u00e7\", \"d\u00f6rt\", \"be\u015f\", \"alt\u0131\", \"yedi\", \"sekiz\", \"dokuz\"];\n  let onlar = &#91;\"\", \"on\", \"yirmi\", \"otuz\", \"k\u0131rk\", \"elli\", \"altm\u0131\u015f\", \"yetmi\u015f\", \"seksen\", \"doksan\"];\n  let y\u00fczler = &#91;\"\", \"y\u00fcz\", \"iki y\u00fcz\", \"\u00fc\u00e7 y\u00fcz\", \"d\u00f6rt y\u00fcz\", \"be\u015f y\u00fcz\", \"alt\u0131 y\u00fcz\", \"yedi y\u00fcz\", \"sekiz y\u00fcz\", \"dokuz y\u00fcz\"];\n  let binler = &#91;\"\", \"bin\", \"milyon\", \"milyar\", \"trilyon\", \"katrilyon\"]; \/\/ Binlik basama\u011f\u0131\n\n  let metin = \"\";\n\n  if (sayi === 0) {\n    return \"s\u0131f\u0131r\";\n  }\n\n\n  for (let i = 5; i >= 0; i--) {\n    let basamak = Math.floor(sayi \/ Math.pow(10, i * 3)); \/\/ 3 basamakl\u0131 bloklar halinde say\u0131y\u0131 b\u00f6ler\n    if (basamak > 0) {\n      if (basamak >= 100 &amp;&amp; basamak % 100 === 0) {\n        metin += y\u00fczler&#91;Math.floor(basamak \/ 100)] + \" \" + binler&#91;i] + \" \";\n      } else {\n        if (i === 1 &amp;&amp; basamak &lt; 100 &amp;&amp; basamak >= 10) {\n          metin += onlar&#91;Math.floor(basamak \/ 10)] + \" \" + birler&#91;basamak % 10] + \" \" + binler&#91;i] + \" \";\n        } else {\n          metin += y\u00fczler&#91;Math.floor(basamak \/ 100)] + \" \";\n          if (basamak % 100 >= 10 &amp;&amp; basamak % 100 &lt; 20) {\n            metin += onlar&#91;basamak % 10] + \" on \" + binler&#91;i] + \" \";\n          } else {\n            metin += onlar&#91;Math.floor((basamak % 100) \/ 10)] + \" \" + birler&#91;basamak % 10] + \" \" + binler&#91;i] + \" \";\n          }\n        }\n      }\n      sayi %= Math.pow(10, i * 3);\n    }\n  }\n\n  if (sayi > 0) {\n    if (metin !== \"\") {\n      metin += \" \";\n    }\n    if (sayi &lt; 10) {\n      metin += birler&#91;sayi];\n    } else if (sayi &lt; 20) {\n      metin += onlar&#91;sayi % 10] + \" on\";\n    } else {\n      metin += onlar&#91;Math.floor(sayi \/ 10)] + \" \" + birler&#91;sayi % 10];\n    }\n  }\n\n  return metin.trim(); \n}<\/code><\/pre>\n\n\n\n<p>You will write this code in the scripts in the \"Automate\" field when you open excel. For this script to work, you can right click on the script and add a button to the workbook. However, it would be best to automate this script. I assign data to this excel via Power Automate and then run this script automatically to convert the number to text. <\/p>\n\n\n\n<p>This code only converts whole numbers. If you write a decimal number, it will not convert the part after the comma. If you are going to convert such a number to text, you need to update the code. If you are unfamiliar with the concept of scripting in Excel, you may have difficulty applying the code at first. You can comment below to let us know what you are having difficulty with.<\/p>\n\n\n\n<p>Note I tested the code for a long time with different numbers. The code can be updated if there is a missed number. <\/p>\n\n\n\n<p><em><a href=\"https:\/\/mryed.com\/en\/yazilim\/kodlama\/flutter\/flutter-excel-islemleri\/\">Many<\/a><\/em> different operations can be done with Excel scripts. I recommend you to try it especially if you are actively using office365.<\/p>\n\n\n\n<p>See you in the next article content...<\/p>","protected":false},"excerpt":{"rendered":"<p>Excel uygulamas\u0131nda \u00f6zellikle para gibi verileri yaz\u0131ya \u00e7evirmek isteriz. Bunun i\u00e7in makrolu ve makrosuz y\u00f6ntemler bulunmaktad\u0131r. Bu yaz\u0131 i\u00e7eri\u011finde betik kullanarak excel&#8217;de say\u0131y\u0131 yaz\u0131ya \u00e7evirme i\u015fleminden bahsedece\u011fim. Excel&#8217;de Say\u0131y\u0131 Yaz\u0131ya \u00c7evirme Ben bu i\u015flem i\u00e7in excel betik i\u015flemini kullanaca\u011f\u0131m. Bunun i\u00e7in makro i\u015flemi de kullan\u0131lmakta. Ancak bir rakam\u0131 metne \u00e7evirmek i\u00e7in makro kulland\u0131\u011f\u0131n\u0131zda baz\u0131 sorunlar&#8230;<\/p>\n<p><a class=\"read-more\" href=\"https:\/\/mryed.com\/en\/yazilim\/excel-sayiyi-yaziya-cevirme\/\">Read More<\/a><\/p>","protected":false},"author":1,"featured_media":890,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[23,83,11],"tags":[95,96],"class_list":["post-889","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-kodlama","category-power-platform","category-yazilim","tag-excelde-rakami-yaziya-cevirme","tag-sayiyi-metne-cevirme"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.3 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Excel&#039;de Say\u0131y\u0131 Yaz\u0131ya \u00c7evirme - Excel Betik - Yunus Emre<\/title>\n<meta name=\"description\" content=\"Betik kullanarak excel&#039;de say\u0131y\u0131 yaz\u0131ya \u00e7evirme i\u015flemini yapabiliriz. Rakam, para birimi gibi de\u011ferleri metne \u00e7evirebiliriz.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/mryed.com\/en\/yazilim\/excel-sayiyi-yaziya-cevirme\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Excel&#039;de Say\u0131y\u0131 Yaz\u0131ya \u00c7evirme - Excel Betik - Yunus Emre\" \/>\n<meta property=\"og:description\" content=\"Betik kullanarak excel&#039;de say\u0131y\u0131 yaz\u0131ya \u00e7evirme i\u015flemini yapabiliriz. Rakam, para birimi gibi de\u011ferleri metne \u00e7evirebiliriz.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/mryed.com\/en\/yazilim\/excel-sayiyi-yaziya-cevirme\/\" \/>\n<meta property=\"og:site_name\" content=\"Yunus Emre\" \/>\n<meta property=\"article:published_time\" content=\"2024-07-08T06:17:24+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-07-08T06:17:25+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/mryed.com\/wp-content\/uploads\/2024\/07\/sayiyi-yaziya-cevirme.png\" \/>\n\t<meta property=\"og:image:width\" content=\"1920\" \/>\n\t<meta property=\"og:image:height\" content=\"900\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Mr.YED\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Mr.YED\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/mryed.com\\\/yazilim\\\/excel-sayiyi-yaziya-cevirme\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/mryed.com\\\/yazilim\\\/excel-sayiyi-yaziya-cevirme\\\/\"},\"author\":{\"name\":\"Mr.YED\",\"@id\":\"https:\\\/\\\/mryed.com\\\/#\\\/schema\\\/person\\\/4bb44b3409df8d51fc489343880ffea1\"},\"headline\":\"Excel&#8217;de Say\u0131y\u0131 Yaz\u0131ya \u00c7evirme &#8211; Excel Betik\",\"datePublished\":\"2024-07-08T06:17:24+00:00\",\"dateModified\":\"2024-07-08T06:17:25+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/mryed.com\\\/yazilim\\\/excel-sayiyi-yaziya-cevirme\\\/\"},\"wordCount\":381,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/mryed.com\\\/#\\\/schema\\\/person\\\/4bb44b3409df8d51fc489343880ffea1\"},\"image\":{\"@id\":\"https:\\\/\\\/mryed.com\\\/yazilim\\\/excel-sayiyi-yaziya-cevirme\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/mryed.com\\\/wp-content\\\/uploads\\\/2024\\\/07\\\/sayiyi-yaziya-cevirme.png\",\"keywords\":[\"excel'de rakam\u0131 yaz\u0131ya \u00e7evirme\",\"say\u0131y\u0131 metne \u00e7evirme\"],\"articleSection\":[\"Kodlama\",\"Power Platform\",\"Yaz\u0131l\u0131m\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/mryed.com\\\/yazilim\\\/excel-sayiyi-yaziya-cevirme\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/mryed.com\\\/yazilim\\\/excel-sayiyi-yaziya-cevirme\\\/\",\"url\":\"https:\\\/\\\/mryed.com\\\/yazilim\\\/excel-sayiyi-yaziya-cevirme\\\/\",\"name\":\"Excel'de Say\u0131y\u0131 Yaz\u0131ya \u00c7evirme - Excel Betik - Yunus Emre\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/mryed.com\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/mryed.com\\\/yazilim\\\/excel-sayiyi-yaziya-cevirme\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/mryed.com\\\/yazilim\\\/excel-sayiyi-yaziya-cevirme\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/mryed.com\\\/wp-content\\\/uploads\\\/2024\\\/07\\\/sayiyi-yaziya-cevirme.png\",\"datePublished\":\"2024-07-08T06:17:24+00:00\",\"dateModified\":\"2024-07-08T06:17:25+00:00\",\"description\":\"Betik kullanarak excel'de say\u0131y\u0131 yaz\u0131ya \u00e7evirme i\u015flemini yapabiliriz. Rakam, para birimi gibi de\u011ferleri metne \u00e7evirebiliriz.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/mryed.com\\\/yazilim\\\/excel-sayiyi-yaziya-cevirme\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/mryed.com\\\/yazilim\\\/excel-sayiyi-yaziya-cevirme\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/mryed.com\\\/yazilim\\\/excel-sayiyi-yaziya-cevirme\\\/#primaryimage\",\"url\":\"https:\\\/\\\/mryed.com\\\/wp-content\\\/uploads\\\/2024\\\/07\\\/sayiyi-yaziya-cevirme.png\",\"contentUrl\":\"https:\\\/\\\/mryed.com\\\/wp-content\\\/uploads\\\/2024\\\/07\\\/sayiyi-yaziya-cevirme.png\",\"width\":1920,\"height\":900,\"caption\":\"para-metne-cevirme\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/mryed.com\\\/yazilim\\\/excel-sayiyi-yaziya-cevirme\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Anasayfa\",\"item\":\"https:\\\/\\\/mryed.com\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Excel&#8217;de Say\u0131y\u0131 Yaz\u0131ya \u00c7evirme &#8211; Excel Betik\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/mryed.com\\\/#website\",\"url\":\"https:\\\/\\\/mryed.com\\\/\",\"name\":\"Yunus Emre\",\"description\":\"Software Engineer\",\"publisher\":{\"@id\":\"https:\\\/\\\/mryed.com\\\/#\\\/schema\\\/person\\\/4bb44b3409df8d51fc489343880ffea1\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/mryed.com\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":[\"Person\",\"Organization\"],\"@id\":\"https:\\\/\\\/mryed.com\\\/#\\\/schema\\\/person\\\/4bb44b3409df8d51fc489343880ffea1\",\"name\":\"Mr.YED\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/mryed.com\\\/wp-content\\\/uploads\\\/2021\\\/03\\\/yunus-emre-demirel.png\",\"url\":\"https:\\\/\\\/mryed.com\\\/wp-content\\\/uploads\\\/2021\\\/03\\\/yunus-emre-demirel.png\",\"contentUrl\":\"https:\\\/\\\/mryed.com\\\/wp-content\\\/uploads\\\/2021\\\/03\\\/yunus-emre-demirel.png\",\"width\":360,\"height\":360,\"caption\":\"Mr.YED\"},\"logo\":{\"@id\":\"https:\\\/\\\/mryed.com\\\/wp-content\\\/uploads\\\/2021\\\/03\\\/yunus-emre-demirel.png\"},\"description\":\"Mobil, web ve Microsoft tabanl\u0131 uygulamalar geli\u015ftiren bir yaz\u0131l\u0131m m\u00fchendisiyim. Kariyerim boyunca farkl\u0131 sekt\u00f6rlerde edindi\u011fim deneyimlerle \u00f6zellikle Power Platform, Power Apps, Power Automate ve kurumsal s\u00fcre\u00e7 otomasyonu konular\u0131nda uzmanla\u015ft\u0131m. Bu blogda yaz\u0131l\u0131m geli\u015ftirme, otomasyon ve Microsoft teknolojileri \u00fczerine edindi\u011fim tecr\u00fcbeleri payla\u015f\u0131yorum.\",\"sameAs\":[\"http:\\\/\\\/mryed.com\",\"https:\\\/\\\/www.linkedin.com\\\/in\\\/yunus-emre-demirel\\\/\"]}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Excel'de Say\u0131y\u0131 Yaz\u0131ya \u00c7evirme - Excel Betik - Yunus Emre","description":"Betik kullanarak excel'de say\u0131y\u0131 yaz\u0131ya \u00e7evirme i\u015flemini yapabiliriz. Rakam, para birimi gibi de\u011ferleri metne \u00e7evirebiliriz.","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:\/\/mryed.com\/en\/yazilim\/excel-sayiyi-yaziya-cevirme\/","og_locale":"en_US","og_type":"article","og_title":"Excel'de Say\u0131y\u0131 Yaz\u0131ya \u00c7evirme - Excel Betik - Yunus Emre","og_description":"Betik kullanarak excel'de say\u0131y\u0131 yaz\u0131ya \u00e7evirme i\u015flemini yapabiliriz. Rakam, para birimi gibi de\u011ferleri metne \u00e7evirebiliriz.","og_url":"https:\/\/mryed.com\/en\/yazilim\/excel-sayiyi-yaziya-cevirme\/","og_site_name":"Yunus Emre","article_published_time":"2024-07-08T06:17:24+00:00","article_modified_time":"2024-07-08T06:17:25+00:00","og_image":[{"width":1920,"height":900,"url":"https:\/\/mryed.com\/wp-content\/uploads\/2024\/07\/sayiyi-yaziya-cevirme.png","type":"image\/png"}],"author":"Mr.YED","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Mr.YED","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/mryed.com\/yazilim\/excel-sayiyi-yaziya-cevirme\/#article","isPartOf":{"@id":"https:\/\/mryed.com\/yazilim\/excel-sayiyi-yaziya-cevirme\/"},"author":{"name":"Mr.YED","@id":"https:\/\/mryed.com\/#\/schema\/person\/4bb44b3409df8d51fc489343880ffea1"},"headline":"Excel&#8217;de Say\u0131y\u0131 Yaz\u0131ya \u00c7evirme &#8211; Excel Betik","datePublished":"2024-07-08T06:17:24+00:00","dateModified":"2024-07-08T06:17:25+00:00","mainEntityOfPage":{"@id":"https:\/\/mryed.com\/yazilim\/excel-sayiyi-yaziya-cevirme\/"},"wordCount":381,"commentCount":0,"publisher":{"@id":"https:\/\/mryed.com\/#\/schema\/person\/4bb44b3409df8d51fc489343880ffea1"},"image":{"@id":"https:\/\/mryed.com\/yazilim\/excel-sayiyi-yaziya-cevirme\/#primaryimage"},"thumbnailUrl":"https:\/\/mryed.com\/wp-content\/uploads\/2024\/07\/sayiyi-yaziya-cevirme.png","keywords":["excel'de rakam\u0131 yaz\u0131ya \u00e7evirme","say\u0131y\u0131 metne \u00e7evirme"],"articleSection":["Kodlama","Power Platform","Yaz\u0131l\u0131m"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/mryed.com\/yazilim\/excel-sayiyi-yaziya-cevirme\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/mryed.com\/yazilim\/excel-sayiyi-yaziya-cevirme\/","url":"https:\/\/mryed.com\/yazilim\/excel-sayiyi-yaziya-cevirme\/","name":"Excel'de Say\u0131y\u0131 Yaz\u0131ya \u00c7evirme - Excel Betik - Yunus Emre","isPartOf":{"@id":"https:\/\/mryed.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/mryed.com\/yazilim\/excel-sayiyi-yaziya-cevirme\/#primaryimage"},"image":{"@id":"https:\/\/mryed.com\/yazilim\/excel-sayiyi-yaziya-cevirme\/#primaryimage"},"thumbnailUrl":"https:\/\/mryed.com\/wp-content\/uploads\/2024\/07\/sayiyi-yaziya-cevirme.png","datePublished":"2024-07-08T06:17:24+00:00","dateModified":"2024-07-08T06:17:25+00:00","description":"Betik kullanarak excel'de say\u0131y\u0131 yaz\u0131ya \u00e7evirme i\u015flemini yapabiliriz. Rakam, para birimi gibi de\u011ferleri metne \u00e7evirebiliriz.","breadcrumb":{"@id":"https:\/\/mryed.com\/yazilim\/excel-sayiyi-yaziya-cevirme\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/mryed.com\/yazilim\/excel-sayiyi-yaziya-cevirme\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/mryed.com\/yazilim\/excel-sayiyi-yaziya-cevirme\/#primaryimage","url":"https:\/\/mryed.com\/wp-content\/uploads\/2024\/07\/sayiyi-yaziya-cevirme.png","contentUrl":"https:\/\/mryed.com\/wp-content\/uploads\/2024\/07\/sayiyi-yaziya-cevirme.png","width":1920,"height":900,"caption":"para-metne-cevirme"},{"@type":"BreadcrumbList","@id":"https:\/\/mryed.com\/yazilim\/excel-sayiyi-yaziya-cevirme\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Anasayfa","item":"https:\/\/mryed.com\/"},{"@type":"ListItem","position":2,"name":"Excel&#8217;de Say\u0131y\u0131 Yaz\u0131ya \u00c7evirme &#8211; Excel Betik"}]},{"@type":"WebSite","@id":"https:\/\/mryed.com\/#website","url":"https:\/\/mryed.com\/","name":"Yunus Emre","description":"Software Engineer","publisher":{"@id":"https:\/\/mryed.com\/#\/schema\/person\/4bb44b3409df8d51fc489343880ffea1"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/mryed.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":["Person","Organization"],"@id":"https:\/\/mryed.com\/#\/schema\/person\/4bb44b3409df8d51fc489343880ffea1","name":"Mr.YED","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/mryed.com\/wp-content\/uploads\/2021\/03\/yunus-emre-demirel.png","url":"https:\/\/mryed.com\/wp-content\/uploads\/2021\/03\/yunus-emre-demirel.png","contentUrl":"https:\/\/mryed.com\/wp-content\/uploads\/2021\/03\/yunus-emre-demirel.png","width":360,"height":360,"caption":"Mr.YED"},"logo":{"@id":"https:\/\/mryed.com\/wp-content\/uploads\/2021\/03\/yunus-emre-demirel.png"},"description":"I am a software engineer who develops mobile, web, and Microsoft-based applications. Throughout my career, I have gained experience in various industries and specialized in Power Platform, Power Apps, Power Automate, and enterprise process automation. In this blog, I share my experiences in software development, automation, and Microsoft technologies.","sameAs":["http:\/\/mryed.com","https:\/\/www.linkedin.com\/in\/yunus-emre-demirel\/"]}]}},"_links":{"self":[{"href":"https:\/\/mryed.com\/en\/wp-json\/wp\/v2\/posts\/889","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/mryed.com\/en\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/mryed.com\/en\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/mryed.com\/en\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/mryed.com\/en\/wp-json\/wp\/v2\/comments?post=889"}],"version-history":[{"count":1,"href":"https:\/\/mryed.com\/en\/wp-json\/wp\/v2\/posts\/889\/revisions"}],"predecessor-version":[{"id":891,"href":"https:\/\/mryed.com\/en\/wp-json\/wp\/v2\/posts\/889\/revisions\/891"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/mryed.com\/en\/wp-json\/wp\/v2\/media\/890"}],"wp:attachment":[{"href":"https:\/\/mryed.com\/en\/wp-json\/wp\/v2\/media?parent=889"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/mryed.com\/en\/wp-json\/wp\/v2\/categories?post=889"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/mryed.com\/en\/wp-json\/wp\/v2\/tags?post=889"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}