<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
  <channel>
    <title>Documentation – Aspose.Cells for .NET&#39;te PivotTable&#39;ları ve PivotTable önbelleklerini yenileme</title>
    <link>https://docs.aspose.com/cells/tr/net/refresh-pivot-table/</link>
    <description>Recent content in Aspose.Cells for .NET&#39;te PivotTable&#39;ları ve PivotTable önbelleklerini yenileme on Documentation</description>
    <generator>Hugo -- gohugo.io</generator>
    <language>tr</language>
    
	  <atom:link href="https://docs.aspose.com/cells/tr/net/refresh-pivot-table/index.xml" rel="self" type="application/rss+xml" />
    
    
      
        
      
    
    
    <item>
      <title>Net: Yenileme ve Hesaplanmış Öğeleri Olan Özet Tabloyu Yenileme</title>
      <link>https://docs.aspose.com/cells/tr/net/refresh-and-calculate-pivot-table-having-calculated-items/</link>
      <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
      
      <guid>https://docs.aspose.com/cells/tr/net/refresh-and-calculate-pivot-table-having-calculated-items/</guid>
      <description>
        
        
        

&lt;div class=&#34;alert alert-primary&#34; role=&#34;alert&#34;&gt;

Aspose.Cells artık hesaplanmış öğeleri içeren pivot tablosunu yenileme ve hesaplama işlemini destekler. Bunun için bu işlemi gerçekleştirmek için değişkenleri &lt;a href=&#34;https://reference.aspose.com/cells/net/aspose.cells.pivot/pivottable/methods/refreshdata&#34;&gt;&lt;strong&gt;PivotTable.RefreshData()&lt;/strong&gt;&lt;/a&gt; ve &lt;a href=&#34;https://reference.aspose.com/cells/net/aspose.cells.pivot/pivottable/methods/calculatedata&#34;&gt;&lt;strong&gt;PivotTable.CaclulateData()&lt;/strong&gt;&lt;/a&gt; kullanmalısınız.
&lt;/div&gt;

&lt;h2 id=&#34;hesaplanmış-öğeleri-olan-özet-tabloyu-yenileme-ve-hesaplama&#34;&gt;&lt;strong&gt;Hesaplanmış öğeleri olan özet tabloyu yenileme ve hesaplama&lt;/strong&gt;&lt;/h2&gt;
&lt;p&gt;Aşağıdaki örnek kod, içerisinde &amp;ldquo;add&amp;rdquo;, &amp;ldquo;div&amp;rdquo; ve &amp;ldquo;div2&amp;rdquo; gibi üç hesaplanmış öğe bulunan bir pivot tablosunu içeren &lt;a href=&#34;5115238.xlsx&#34;&gt;kaynak excel dosyasını&lt;/a&gt; yükler. İlk olarak D2 hücresinin değerini 20 olarak değiştiririz ve sonra Aspose.Cells API&amp;rsquo;lerini kullanarak pivot tablosunu yeniler ve hesaplar, ardından sonucu PDF formatında kaydeder. &lt;a href=&#34;5115229.pdf&#34;&gt;Çıktı PDF&amp;rsquo;indeki&lt;/a&gt; sonuçlar, Aspose.Cells&amp;rsquo;in başarılı bir şekilde hesaplanmış öğeleri içeren pivot tablosunu yenilediğini ve hesaplama yaptığını göstermektedir. Bu durumu Microsoft Excel&amp;rsquo;i kullanarak manuel olarak D2 hücresine 20 değerini girerek ve sonra pivot tablosunu Alt+F5 kısayol tuşunu kullanarak veya pivot tablosu Yenile düğmesine tıklayarak doğrulayabilirsiniz.&lt;/p&gt;
&lt;p&gt;&lt;script type=&#34;application/javascript&#34; src=&#34;https://gist.github.com/aspose-cells-gists/88c9872508ec3150c552eb5155edf06e.js?file=Examples-CSharp-PivotTable-RefreshAndCalculateItems-1.cs&#34;&gt;&lt;/script&gt;

&lt;button class=&#34;floating-button&#34; id=&#34;openModalBtn&#34;&gt;AI Document Assistant&lt;/button&gt;

&lt;div class=&#34;modal&#34; id=&#34;modal&#34;&gt;
    &lt;button class=&#34;close-btn&#34; id=&#34;closeModalBtn&#34;&gt;Close&lt;/button&gt;
    &lt;iframe src=&#34;https://products.aspose.ai/cells/chat/document/csharp?source=docs&#34; frameborder=&#34;0&#34; width=&#34;100%&#34; height=&#34;100%&#34;&gt;&lt;/iframe&gt;
&lt;/div&gt;

&lt;style&gt;
    .floating-button {
        position: fixed;
        bottom: 20px;
        right: 20px;
        background-color: #007bff;
        color: white;
        border: none;
        padding: 15px 20px;
        border-radius: 50px;
        cursor: pointer;
        font-size: 16px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        z-index: 999;
    }

    .modal {
        display: none;
        position: fixed;
        top: 10%;
        left: 10%;
        width: 80%;
        height: 80%;
        background-color: white;
        border: none;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
        z-index: 1000;
        padding: 20px;
        box-sizing: border-box;
    }

    .close-btn {
        position: absolute;
        top: 10px;
        right: 10px;
        background-color: #f44336;
        color: white;
        border: none;
        padding: 5px 10px;
        cursor: pointer;
        font-size: 16px;
        border-radius: 3px;
    }
&lt;/style&gt;

&lt;script&gt;
    const openModalBtn = document.getElementById(&#39;openModalBtn&#39;);
    const closeModalBtn = document.getElementById(&#39;closeModalBtn&#39;);
    const modal = document.getElementById(&#39;modal&#39;);

    openModalBtn.addEventListener(&#39;click&#39;, function() {
        modal.style.display = &#39;block&#39;;
    });

    closeModalBtn.addEventListener(&#39;click&#39;, function() {
        modal.style.display = &#39;none&#39;;
    });

    window.addEventListener(&#39;click&#39;, function(event) {
        if (event.target === modal) {
            modal.style.display = &#39;none&#39;;
        }
    });
&lt;/script&gt;
&lt;/p&gt;

      </description>
    </item>
    
    <item>
      <title>Net: Ana Pivot Tablosunun İçindeki Yerleşik veya Çocuk Pivot Tablolarını Bul ve Yenile</title>
      <link>https://docs.aspose.com/cells/tr/net/find-and-refresh-the-nested-or-children-pivot-tables-of-parent-pivot-table/</link>
      <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
      
      <guid>https://docs.aspose.com/cells/tr/net/find-and-refresh-the-nested-or-children-pivot-tables-of-parent-pivot-table/</guid>
      <description>
        
        
        &lt;h2 id=&#34;olası-kullanım-senaryoları&#34;&gt;&lt;strong&gt;Olası Kullanım Senaryoları&lt;/strong&gt;&lt;/h2&gt;
&lt;p&gt;Bazı durumlarda, bir pivot tablosu diğer bir pivot tablosunu veri kaynağı olarak kullandığı için buna çocuk pivot tablosu veya yerleşik pivot tablosu denir. &lt;a href=&#34;https://reference.aspose.com/cells/net/aspose.cells.pivot/pivottable/methods/getchildren&#34;&gt;&lt;strong&gt;PivotTable.GetChildren()&lt;/strong&gt;&lt;/a&gt; yöntemi kullanarak bir ana pivot tablosunun çocuk pivot tablolarını bulabilirsiniz.&lt;/p&gt;
&lt;h2 id=&#34;ana-pivot-tablosunun-içindeki-yerleşik-veya-çocuk-pivot-tablolarını-bul-ve-yenile&#34;&gt;&lt;strong&gt;Ana Pivot Tablosunun İçindeki Yerleşik veya Çocuk Pivot Tablolarını Bul ve Yenile&lt;/strong&gt;&lt;/h2&gt;
&lt;p&gt;Aşağıdaki örnek kod, üç pivot tablosunu içeren &lt;a href=&#34;61767747.xlsx&#34;&gt;örnek Excel dosyasını&lt;/a&gt; yükler. Alt iki pivot tablosu yukarıdaki pivot tablosunun alt pivot tablolarıdır ve bu ekran görüntüsünde gösterildiği gibi. Kod, &lt;a href=&#34;https://reference.aspose.com/cells/net/aspose.cells.pivot/pivottable/methods/getchildren&#34;&gt;&lt;strong&gt;PivotTable.GetChildren()&lt;/strong&gt;&lt;/a&gt; yöntemini kullanarak alt pivot tablosunu bulur ve ardından birer birer yeniler.&lt;/p&gt;
&lt;p&gt;&lt;img src=&#34;find-and-refresh-the-nested-or-children-pivot-tables-of-parent-pivot-table_1.png&#34; alt=&#34;todo:image_alt_text&#34;&gt;&lt;/p&gt;
&lt;h2 id=&#34;örnek-kod&#34;&gt;&lt;strong&gt;Örnek Kod&lt;/strong&gt;&lt;/h2&gt;
&lt;p&gt;&lt;script type=&#34;application/javascript&#34; src=&#34;https://gist.github.com/aspose-cells-gists/59a1901d62ea9ceb08456a818431a898.js?file=PivotTables-FindAndRefreshNestedOrChildrenPivotTables.cs&#34;&gt;&lt;/script&gt;

&lt;button class=&#34;floating-button&#34; id=&#34;openModalBtn&#34;&gt;AI Document Assistant&lt;/button&gt;

&lt;div class=&#34;modal&#34; id=&#34;modal&#34;&gt;
    &lt;button class=&#34;close-btn&#34; id=&#34;closeModalBtn&#34;&gt;Close&lt;/button&gt;
    &lt;iframe src=&#34;https://products.aspose.ai/cells/chat/document/csharp?source=docs&#34; frameborder=&#34;0&#34; width=&#34;100%&#34; height=&#34;100%&#34;&gt;&lt;/iframe&gt;
&lt;/div&gt;

&lt;style&gt;
    .floating-button {
        position: fixed;
        bottom: 20px;
        right: 20px;
        background-color: #007bff;
        color: white;
        border: none;
        padding: 15px 20px;
        border-radius: 50px;
        cursor: pointer;
        font-size: 16px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        z-index: 999;
    }

    .modal {
        display: none;
        position: fixed;
        top: 10%;
        left: 10%;
        width: 80%;
        height: 80%;
        background-color: white;
        border: none;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
        z-index: 1000;
        padding: 20px;
        box-sizing: border-box;
    }

    .close-btn {
        position: absolute;
        top: 10px;
        right: 10px;
        background-color: #f44336;
        color: white;
        border: none;
        padding: 5px 10px;
        cursor: pointer;
        font-size: 16px;
        border-radius: 3px;
    }
&lt;/style&gt;

&lt;script&gt;
    const openModalBtn = document.getElementById(&#39;openModalBtn&#39;);
    const closeModalBtn = document.getElementById(&#39;closeModalBtn&#39;);
    const modal = document.getElementById(&#39;modal&#39;);

    openModalBtn.addEventListener(&#39;click&#39;, function() {
        modal.style.display = &#39;block&#39;;
    });

    closeModalBtn.addEventListener(&#39;click&#39;, function() {
        modal.style.display = &#39;none&#39;;
    });

    window.addEventListener(&#39;click&#39;, function(event) {
        if (event.target === modal) {
            modal.style.display = &#39;none&#39;;
        }
    });
&lt;/script&gt;
&lt;/p&gt;

      </description>
    </item>
    
    <item>
      <title>Net: Pivot Tablosu yenileme tarihini ve son yenileyeni alın</title>
      <link>https://docs.aspose.com/cells/tr/net/get-pivot-table-refresh-date-and-refresh-by-who-information/</link>
      <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
      
      <guid>https://docs.aspose.com/cells/tr/net/get-pivot-table-refresh-date-and-refresh-by-who-information/</guid>
      <description>
        
        
        

&lt;div class=&#34;alert alert-primary&#34; role=&#34;alert&#34;&gt;

Aspose.Cells şimdi bir çalışma kitabından yenileme tarihi ve son yenileyen bilgisini almayı destekler.
&lt;/div&gt;

&lt;p&gt;&lt;a href=&#34;https://reference.aspose.com/cells/net/aspose.cells.pivot/pivottable/properties/refreshdate&#34;&gt;&lt;strong&gt;PivotTable.RefreshDate&lt;/strong&gt;&lt;/a&gt;, PivotTablo raporunun son yenilendiği tarihi döndürür. Benzer şekilde, &lt;a href=&#34;https://reference.aspose.com/cells/net/aspose.cells.pivot/pivottable/properties/refreshedbywho&#34;&gt;&lt;strong&gt;PivotTable.RefreshByWho&lt;/strong&gt;&lt;/a&gt; özelliği raporun en son kimin tarafından yenilendiğini döndürür. Aşağıdaki örnek bu özelliği ve örnek dosyayı aşağıdaki bağlantıdan indirebilirsiniz.&lt;/p&gt;
&lt;p&gt;&lt;a href=&#34;77496335.xlsx&#34;&gt;SourcePivotTable.xlsx&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Örnek Kod&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;&lt;script type=&#34;application/javascript&#34; src=&#34;https://gist.github.com/aspose-cells-gists/88c9872508ec3150c552eb5155edf06e.js?file=Examples-CSharp-Articles-PivotTablesAndPivotCharts-GetPivotTableRefreshDate-1.cs&#34;&gt;&lt;/script&gt;

&lt;button class=&#34;floating-button&#34; id=&#34;openModalBtn&#34;&gt;AI Document Assistant&lt;/button&gt;

&lt;div class=&#34;modal&#34; id=&#34;modal&#34;&gt;
    &lt;button class=&#34;close-btn&#34; id=&#34;closeModalBtn&#34;&gt;Close&lt;/button&gt;
    &lt;iframe src=&#34;https://products.aspose.ai/cells/chat/document/csharp?source=docs&#34; frameborder=&#34;0&#34; width=&#34;100%&#34; height=&#34;100%&#34;&gt;&lt;/iframe&gt;
&lt;/div&gt;

&lt;style&gt;
    .floating-button {
        position: fixed;
        bottom: 20px;
        right: 20px;
        background-color: #007bff;
        color: white;
        border: none;
        padding: 15px 20px;
        border-radius: 50px;
        cursor: pointer;
        font-size: 16px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        z-index: 999;
    }

    .modal {
        display: none;
        position: fixed;
        top: 10%;
        left: 10%;
        width: 80%;
        height: 80%;
        background-color: white;
        border: none;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
        z-index: 1000;
        padding: 20px;
        box-sizing: border-box;
    }

    .close-btn {
        position: absolute;
        top: 10px;
        right: 10px;
        background-color: #f44336;
        color: white;
        border: none;
        padding: 5px 10px;
        cursor: pointer;
        font-size: 16px;
        border-radius: 3px;
    }
&lt;/style&gt;

&lt;script&gt;
    const openModalBtn = document.getElementById(&#39;openModalBtn&#39;);
    const closeModalBtn = document.getElementById(&#39;closeModalBtn&#39;);
    const modal = document.getElementById(&#39;modal&#39;);

    openModalBtn.addEventListener(&#39;click&#39;, function() {
        modal.style.display = &#39;block&#39;;
    });

    closeModalBtn.addEventListener(&#39;click&#39;, function() {
        modal.style.display = &#39;none&#39;;
    });

    window.addEventListener(&#39;click&#39;, function(event) {
        if (event.target === modal) {
            modal.style.display = &#39;none&#39;;
        }
    });
&lt;/script&gt;
&lt;/p&gt;

      </description>
    </item>
    
  </channel>
</rss>
