{"id":913,"date":"2024-12-09T01:02:54","date_gmt":"2024-12-08T22:02:54","guid":{"rendered":"https:\/\/mryed.com\/?p=913"},"modified":"2024-12-09T01:39:46","modified_gmt":"2024-12-08T22:39:46","slug":"powerapps-dinamik-word-ve-excel-olusturma","status":"publish","type":"post","link":"https:\/\/mryed.com\/en\/yazilim\/kodlama\/power-platform\/powerapps-dinamik-word-ve-excel-olusturma\/","title":{"rendered":"Creating Dynamic Word and Excel with PowerApps"},"content":{"rendered":"<p>Creating dynamic documents using PowerApps automates your business processes, saving time and increasing productivity. In this article, I explain step by step how you can easily create Word and Excel documents by leveraging the power of SharePoint, Power Automate and PowerApps.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Dynamic Word and Excel Creation<\/h2>\n\n\n\n<p>In my previous articles, I talked about <em><a href=\"https:\/\/mryed.com\/en\/yazilim\/kodlama\/flutter\/flutter-excel-islemleri\/\">creating excel with flutter.<\/a><\/em> Now I will talk about how we can do a similar process easily with powerapps.<\/p>\n\n\n\n<p>First of all, I will not go too much into the beginning of powerapps in the content of the article. I continue by assuming that you have created the design and forms on the Powerapps side.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">How to Create a Dynamic Word Document with PowerApps?<\/h3>\n\n\n\n<p>Let's start with word first. To create a dynamic word document in Powerapps, we need to open a document library in sharepoint. We can import the columns in this document library into the word document as it is. For this reason, when we assign the data we receive from the user in powerapps to the columns in the sharepoint document library, the process is almost complete. So how can we write data from powerapps to the document library;<\/p>\n\n\n\n<p>For this, let's first create a word document to use as a template in the document library we have opened. Then let's create some columns to throw into this document. Our infrastructure is almost ready.  Now we will throw the data we receive on the Powerapps side to Automate and from there we will write data to the columns in the document library we have opened. For this, I convert my data into JSON in Powerapps.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>\/*\nPowerapps json olu\u015fturarak ak\u0131\u015fa bu json verimizi g\u00f6nderiyoruz ve d\u00f6n\u00fc\u015f olarak bir link al\u0131yoruz. Daha sonra Launch komutu ile bu linki a\u00e7\u0131yoruz. \n*\/\n\nSet(\n    jsonData,\n    JSON(\n        {\n            Name: Txt_Name.Value,\n            Lastname: Txt_Lastname.Value,\n            City: Txt_City.Value,\n            AktifMi: Cb_AktifMi.Checked\n        }\n    )\n);\nSet(\n    wordLink,\n    'Dinamik-Word'.Run(jsonData).url\n);\nLaunch(wordLink)<\/code><\/pre>\n\n\n\n<p>This code converted the data in the application into JSON and sent this JSON to the stream named \u201cDynamic Word\u201d.It also saved a text returned from the stream in a variable named \u201cwordLink\u201d.Then it opened this link with the \u201cLaunch\u201d command. <\/p>\n\n\n\n<p>Now let's move on to the streaming part.In the flow, we first get the JSON data that will come from Powerapps.We can also get data one by one here, but when the number of data increases, it can be a problem. For this reason, I generally work with JSON. Then I access my data by parsing the incoming JSON file. Then I copy the template word document I created earlier in the document library. In the next step, I create new data with this copied document. Then I save my JSON data that comes as a parameter in the columns of the new data created. In this way, we have created a data in the sharepoint document library.<\/p>\n\n\n<div class=\"wp-block-image\">\n<figure class=\"aligncenter size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"574\" src=\"https:\/\/mryed.com\/wp-content\/uploads\/2024\/12\/powerapps-dokuman-yonetimi-1024x574.png\" alt=\"\" class=\"wp-image-916\" srcset=\"https:\/\/mryed.com\/wp-content\/uploads\/2024\/12\/powerapps-dokuman-yonetimi-1024x574.png 1024w, https:\/\/mryed.com\/wp-content\/uploads\/2024\/12\/powerapps-dokuman-yonetimi-300x168.png 300w, https:\/\/mryed.com\/wp-content\/uploads\/2024\/12\/powerapps-dokuman-yonetimi-768x431.png 768w, https:\/\/mryed.com\/wp-content\/uploads\/2024\/12\/powerapps-dokuman-yonetimi-18x10.png 18w, https:\/\/mryed.com\/wp-content\/uploads\/2024\/12\/powerapps-dokuman-yonetimi.png 1405w\" sizes=\"auto, (max-width: 1024px) 100vw, 1024px\" \/><\/figure>\n<\/div>\n\n\n<p>To write the columns in the Sharepoint library to the word document, we open the word document we added as a template. From the Insert section at the top, we click on the Document Property field in Quick Sections. Here we can see the columns we opened in sharepoint. You can add the column you want to the desired area of the word document.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">How to Create Dynamic Excel with PowerApps?<\/h3>\n\n\n\n<p>Creating a dynamic excel is a bit more complicated. But you have more possibilities. In the word document we followed the progression PowerApps - Power Automate - Word, but in the excel phase we will follow the progression <em><a href=\"https:\/\/www.microsoft.com\/tr-tr\/power-platform\/products\/power-apps\">PowerApps<\/a><\/em> - Power Automate - Excel Script - Excel. Excel scripts are special codes written for excel. I like it more than Word because it gives me more freedom. I can do almost everything I want very easily here.<br><\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Let's create a JSON with our data again in Powerapps.<\/li>\n\n\n\n<li>Send the JSON data to Power Automate.<\/li>\n\n\n\n<li>Let's create an excel template in the Sharepoint document library.<\/li>\n\n\n\n<li>Let's copy this template in our Automate flow and create a new excel.<\/li>\n\n\n\n<li>Then select Run script in Automate.<\/li>\n<\/ul>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"587\" src=\"https:\/\/mryed.com\/wp-content\/uploads\/2024\/12\/dinamik-excel-olustur-1024x587.png\" alt=\"\" class=\"wp-image-917\" srcset=\"https:\/\/mryed.com\/wp-content\/uploads\/2024\/12\/dinamik-excel-olustur-1024x587.png 1024w, https:\/\/mryed.com\/wp-content\/uploads\/2024\/12\/dinamik-excel-olustur-300x172.png 300w, https:\/\/mryed.com\/wp-content\/uploads\/2024\/12\/dinamik-excel-olustur-768x440.png 768w, https:\/\/mryed.com\/wp-content\/uploads\/2024\/12\/dinamik-excel-olustur-18x10.png 18w, https:\/\/mryed.com\/wp-content\/uploads\/2024\/12\/dinamik-excel-olustur.png 1296w\" sizes=\"auto, (max-width: 1024px) 100vw, 1024px\" \/><\/figure>\n\n\n\n<ul class=\"wp-block-list\">\n<li>At this stage we need to open our template Excel and write an Excel script. (Automate-&gt;New Script) When we save the excel script we wrote, it will become visible in the Script tab in the Run script area. Sample excel script is below.<\/li>\n<\/ul>\n\n\n\n<pre class=\"wp-block-code\"><code>interface KisiJson {\n        Name: string;\n        Lastname: string;\n        City: string;\n        AktifMi: boolean\n}\n\n\/\/ Ana fonksiyon\nfunction main(workbook: ExcelScript.Workbook, jsonData: string) {\n    \/\/ JSON stringini parse et\n    let kisiJson: KisiJson = JSON.parse(jsonData);\n\n    \/\/ \u00c7al\u0131\u015fma sayfas\u0131n\u0131 se\u00e7\n    let selectedSheet = workbook.getWorksheet(\"Sayfa1\");\n\n    \/\/ Verileri h\u00fccrelere yerle\u015ftir\n    selectedSheet.getRange(\"C9\").setValue(kisiJson.Name);\n    selectedSheet.getRange(\"C10\").setValue(kisiJson.Lastname);\n    selectedSheet.getRange(\"D9\").setValue(kisiJson.City);\n   \n    if(kisiJson.AktifMi === true)\n    {\n        selectedSheet.getRange(\"E9\").setValue(\"\u2705\");\n    }\n    else\n    {\n        selectedSheet.getRange(\"E9\").setValue(\"\u274c\");\n    }\n}<\/code><\/pre>\n\n\n\n<ul class=\"wp-block-list\">\n<li>When we select the script we created on the automate side, we will be asked for parameters. Here we can do JSON parsing on the automate side, but my suggestion is to do it on the excel script side. Because I realized that the script works much faster in some operations. <\/li>\n\n\n\n<li>I send the JSON data from Powerapps to Automate, this time to the script.<\/li>\n\n\n\n<li>My script will take this JSON and process it into cells.<\/li>\n\n\n\n<li>After scripting in the stream, I create a share connection again and switch back to powerapps. <\/li>\n<\/ul>\n\n\n\n<p>All these processes are completed in a very short time and the user can open the dynamic document. I have used only 3-4 data for example. In comprehensive projects, the number of data can increase a lot. Sometimes we can also create dynamic excel by defining an array in JSON. Even in these cases, the script completes quickly and fills the document without making the user wait too long.<\/p>\n\n\n\n<p>Note: Using Excel scripts you can change the height, font, color of a cell. You can add new rows and thus create completely dynamic documents. For this reason, I use excel whenever possible, except in some cases. <\/p>\n\n\n\n<p>We have realized the process of <strong>creating dynamic word and excel<\/strong> using the Microsoft power platform. These operations can be done in different ways. You can write the methods you use as a comment below<br><\/p>\n\n\n\n<p>See you in the next article...<\/p>","protected":false},"excerpt":{"rendered":"<p>PowerApps kullanarak dinamik dok\u00fcmanlar olu\u015fturmak, i\u015f s\u00fcre\u00e7lerinizi otomatikle\u015ftirerek hem zaman kazand\u0131r\u0131r hem de verimlili\u011finizi art\u0131r\u0131r. Bu yaz\u0131da, SharePoint, Power Automate ve PowerApps&#8217;in g\u00fcc\u00fcnden yararlanarak Word ve Excel belgelerini kolayca nas\u0131l olu\u015fturabilece\u011finizi ad\u0131m ad\u0131m anlat\u0131yorum. Dinamik Word ve Excel Olu\u015fturma Daha \u00f6nceki yaz\u0131lar\u0131mda flutter ile excel olu\u015fturma i\u015fleminden bahsetmi\u015ftim. \u015eimdi benzer bir i\u015flemi powerapps ile kolay&#8230;<\/p>\n<p><a class=\"read-more\" href=\"https:\/\/mryed.com\/en\/yazilim\/kodlama\/power-platform\/powerapps-dinamik-word-ve-excel-olusturma\/\">Read More<\/a><\/p>","protected":false},"author":1,"featured_media":915,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[23,83,11],"tags":[113,114],"class_list":["post-913","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-kodlama","category-power-platform","category-yazilim","tag-excel-betik-ornegi","tag-sharepoint-dokuman-yonetimi"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.3 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>PowerApps ile Dinamik Word ve Excel Olu\u015fturma - Yunus Emre<\/title>\n<meta name=\"description\" content=\"PowerApps kullanarak dinamik word ve excel olu\u015fturma. \u0130\u015f s\u00fcre\u00e7lerinizi otomatikle\u015ftirin, zamandan tasarruf edin ve verimlili\u011fi art\u0131r\u0131n!\" \/>\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\/kodlama\/power-platform\/powerapps-dinamik-word-ve-excel-olusturma\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"PowerApps ile Dinamik Word ve Excel Olu\u015fturma - Yunus Emre\" \/>\n<meta property=\"og:description\" content=\"PowerApps kullanarak dinamik word ve excel olu\u015fturma. \u0130\u015f s\u00fcre\u00e7lerinizi otomatikle\u015ftirin, zamandan tasarruf edin ve verimlili\u011fi art\u0131r\u0131n!\" \/>\n<meta property=\"og:url\" content=\"https:\/\/mryed.com\/en\/yazilim\/kodlama\/power-platform\/powerapps-dinamik-word-ve-excel-olusturma\/\" \/>\n<meta property=\"og:site_name\" content=\"Yunus Emre\" \/>\n<meta property=\"article:published_time\" content=\"2024-12-08T22:02:54+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-12-08T22:39:46+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/mryed.com\/wp-content\/uploads\/2024\/12\/dinamik-excel-word.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=\"5 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/mryed.com\\\/yazilim\\\/kodlama\\\/power-platform\\\/powerapps-dinamik-word-ve-excel-olusturma\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/mryed.com\\\/yazilim\\\/kodlama\\\/power-platform\\\/powerapps-dinamik-word-ve-excel-olusturma\\\/\"},\"author\":{\"name\":\"Mr.YED\",\"@id\":\"https:\\\/\\\/mryed.com\\\/#\\\/schema\\\/person\\\/4bb44b3409df8d51fc489343880ffea1\"},\"headline\":\"PowerApps ile Dinamik Word ve Excel Olu\u015fturma\",\"datePublished\":\"2024-12-08T22:02:54+00:00\",\"dateModified\":\"2024-12-08T22:39:46+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/mryed.com\\\/yazilim\\\/kodlama\\\/power-platform\\\/powerapps-dinamik-word-ve-excel-olusturma\\\/\"},\"wordCount\":960,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/mryed.com\\\/#\\\/schema\\\/person\\\/4bb44b3409df8d51fc489343880ffea1\"},\"image\":{\"@id\":\"https:\\\/\\\/mryed.com\\\/yazilim\\\/kodlama\\\/power-platform\\\/powerapps-dinamik-word-ve-excel-olusturma\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/mryed.com\\\/wp-content\\\/uploads\\\/2024\\\/12\\\/dinamik-excel-word.png\",\"keywords\":[\"excel betik \u00f6rne\u011fi\",\"sharepoint dok\u00fcman y\u00f6netimi\"],\"articleSection\":[\"Kodlama\",\"Power Platform\",\"Yaz\u0131l\u0131m\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/mryed.com\\\/yazilim\\\/kodlama\\\/power-platform\\\/powerapps-dinamik-word-ve-excel-olusturma\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/mryed.com\\\/yazilim\\\/kodlama\\\/power-platform\\\/powerapps-dinamik-word-ve-excel-olusturma\\\/\",\"url\":\"https:\\\/\\\/mryed.com\\\/yazilim\\\/kodlama\\\/power-platform\\\/powerapps-dinamik-word-ve-excel-olusturma\\\/\",\"name\":\"PowerApps ile Dinamik Word ve Excel Olu\u015fturma - Yunus Emre\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/mryed.com\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/mryed.com\\\/yazilim\\\/kodlama\\\/power-platform\\\/powerapps-dinamik-word-ve-excel-olusturma\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/mryed.com\\\/yazilim\\\/kodlama\\\/power-platform\\\/powerapps-dinamik-word-ve-excel-olusturma\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/mryed.com\\\/wp-content\\\/uploads\\\/2024\\\/12\\\/dinamik-excel-word.png\",\"datePublished\":\"2024-12-08T22:02:54+00:00\",\"dateModified\":\"2024-12-08T22:39:46+00:00\",\"description\":\"PowerApps kullanarak dinamik word ve excel olu\u015fturma. \u0130\u015f s\u00fcre\u00e7lerinizi otomatikle\u015ftirin, zamandan tasarruf edin ve verimlili\u011fi art\u0131r\u0131n!\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/mryed.com\\\/yazilim\\\/kodlama\\\/power-platform\\\/powerapps-dinamik-word-ve-excel-olusturma\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/mryed.com\\\/yazilim\\\/kodlama\\\/power-platform\\\/powerapps-dinamik-word-ve-excel-olusturma\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/mryed.com\\\/yazilim\\\/kodlama\\\/power-platform\\\/powerapps-dinamik-word-ve-excel-olusturma\\\/#primaryimage\",\"url\":\"https:\\\/\\\/mryed.com\\\/wp-content\\\/uploads\\\/2024\\\/12\\\/dinamik-excel-word.png\",\"contentUrl\":\"https:\\\/\\\/mryed.com\\\/wp-content\\\/uploads\\\/2024\\\/12\\\/dinamik-excel-word.png\",\"width\":1920,\"height\":900,\"caption\":\"powerapps-sharepoint\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/mryed.com\\\/yazilim\\\/kodlama\\\/power-platform\\\/powerapps-dinamik-word-ve-excel-olusturma\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Anasayfa\",\"item\":\"https:\\\/\\\/mryed.com\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"PowerApps ile Dinamik Word ve Excel Olu\u015fturma\"}]},{\"@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":"PowerApps ile Dinamik Word ve Excel Olu\u015fturma - Yunus Emre","description":"PowerApps kullanarak dinamik word ve excel olu\u015fturma. \u0130\u015f s\u00fcre\u00e7lerinizi otomatikle\u015ftirin, zamandan tasarruf edin ve verimlili\u011fi art\u0131r\u0131n!","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\/kodlama\/power-platform\/powerapps-dinamik-word-ve-excel-olusturma\/","og_locale":"en_US","og_type":"article","og_title":"PowerApps ile Dinamik Word ve Excel Olu\u015fturma - Yunus Emre","og_description":"PowerApps kullanarak dinamik word ve excel olu\u015fturma. \u0130\u015f s\u00fcre\u00e7lerinizi otomatikle\u015ftirin, zamandan tasarruf edin ve verimlili\u011fi art\u0131r\u0131n!","og_url":"https:\/\/mryed.com\/en\/yazilim\/kodlama\/power-platform\/powerapps-dinamik-word-ve-excel-olusturma\/","og_site_name":"Yunus Emre","article_published_time":"2024-12-08T22:02:54+00:00","article_modified_time":"2024-12-08T22:39:46+00:00","og_image":[{"width":1920,"height":900,"url":"https:\/\/mryed.com\/wp-content\/uploads\/2024\/12\/dinamik-excel-word.png","type":"image\/png"}],"author":"Mr.YED","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Mr.YED","Est. reading time":"5 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/mryed.com\/yazilim\/kodlama\/power-platform\/powerapps-dinamik-word-ve-excel-olusturma\/#article","isPartOf":{"@id":"https:\/\/mryed.com\/yazilim\/kodlama\/power-platform\/powerapps-dinamik-word-ve-excel-olusturma\/"},"author":{"name":"Mr.YED","@id":"https:\/\/mryed.com\/#\/schema\/person\/4bb44b3409df8d51fc489343880ffea1"},"headline":"PowerApps ile Dinamik Word ve Excel Olu\u015fturma","datePublished":"2024-12-08T22:02:54+00:00","dateModified":"2024-12-08T22:39:46+00:00","mainEntityOfPage":{"@id":"https:\/\/mryed.com\/yazilim\/kodlama\/power-platform\/powerapps-dinamik-word-ve-excel-olusturma\/"},"wordCount":960,"commentCount":0,"publisher":{"@id":"https:\/\/mryed.com\/#\/schema\/person\/4bb44b3409df8d51fc489343880ffea1"},"image":{"@id":"https:\/\/mryed.com\/yazilim\/kodlama\/power-platform\/powerapps-dinamik-word-ve-excel-olusturma\/#primaryimage"},"thumbnailUrl":"https:\/\/mryed.com\/wp-content\/uploads\/2024\/12\/dinamik-excel-word.png","keywords":["excel betik \u00f6rne\u011fi","sharepoint dok\u00fcman y\u00f6netimi"],"articleSection":["Kodlama","Power Platform","Yaz\u0131l\u0131m"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/mryed.com\/yazilim\/kodlama\/power-platform\/powerapps-dinamik-word-ve-excel-olusturma\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/mryed.com\/yazilim\/kodlama\/power-platform\/powerapps-dinamik-word-ve-excel-olusturma\/","url":"https:\/\/mryed.com\/yazilim\/kodlama\/power-platform\/powerapps-dinamik-word-ve-excel-olusturma\/","name":"PowerApps ile Dinamik Word ve Excel Olu\u015fturma - Yunus Emre","isPartOf":{"@id":"https:\/\/mryed.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/mryed.com\/yazilim\/kodlama\/power-platform\/powerapps-dinamik-word-ve-excel-olusturma\/#primaryimage"},"image":{"@id":"https:\/\/mryed.com\/yazilim\/kodlama\/power-platform\/powerapps-dinamik-word-ve-excel-olusturma\/#primaryimage"},"thumbnailUrl":"https:\/\/mryed.com\/wp-content\/uploads\/2024\/12\/dinamik-excel-word.png","datePublished":"2024-12-08T22:02:54+00:00","dateModified":"2024-12-08T22:39:46+00:00","description":"PowerApps kullanarak dinamik word ve excel olu\u015fturma. \u0130\u015f s\u00fcre\u00e7lerinizi otomatikle\u015ftirin, zamandan tasarruf edin ve verimlili\u011fi art\u0131r\u0131n!","breadcrumb":{"@id":"https:\/\/mryed.com\/yazilim\/kodlama\/power-platform\/powerapps-dinamik-word-ve-excel-olusturma\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/mryed.com\/yazilim\/kodlama\/power-platform\/powerapps-dinamik-word-ve-excel-olusturma\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/mryed.com\/yazilim\/kodlama\/power-platform\/powerapps-dinamik-word-ve-excel-olusturma\/#primaryimage","url":"https:\/\/mryed.com\/wp-content\/uploads\/2024\/12\/dinamik-excel-word.png","contentUrl":"https:\/\/mryed.com\/wp-content\/uploads\/2024\/12\/dinamik-excel-word.png","width":1920,"height":900,"caption":"powerapps-sharepoint"},{"@type":"BreadcrumbList","@id":"https:\/\/mryed.com\/yazilim\/kodlama\/power-platform\/powerapps-dinamik-word-ve-excel-olusturma\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Anasayfa","item":"https:\/\/mryed.com\/"},{"@type":"ListItem","position":2,"name":"PowerApps ile Dinamik Word ve Excel Olu\u015fturma"}]},{"@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\/913","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=913"}],"version-history":[{"count":5,"href":"https:\/\/mryed.com\/en\/wp-json\/wp\/v2\/posts\/913\/revisions"}],"predecessor-version":[{"id":922,"href":"https:\/\/mryed.com\/en\/wp-json\/wp\/v2\/posts\/913\/revisions\/922"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/mryed.com\/en\/wp-json\/wp\/v2\/media\/915"}],"wp:attachment":[{"href":"https:\/\/mryed.com\/en\/wp-json\/wp\/v2\/media?parent=913"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/mryed.com\/en\/wp-json\/wp\/v2\/categories?post=913"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/mryed.com\/en\/wp-json\/wp\/v2\/tags?post=913"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}