<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
  <channel>
    <title>Documentation – Aspose.Cells for Node.js via C&#43;&#43;でピボットテーブルを更新する</title>
    <link>https://docs.aspose.com/cells/ja/nodejs-cpp/refresh-pivot-table/</link>
    <description>Recent content in Aspose.Cells for Node.js via C&#43;&#43;でピボットテーブルを更新する on Documentation</description>
    <generator>Hugo -- gohugo.io</generator>
    <language>ja</language>
    
	  <atom:link href="https://docs.aspose.com/cells/ja/nodejs-cpp/refresh-pivot-table/index.xml" rel="self" type="application/rss+xml" />
    
    
      
        
      
    
    
    <item>
      <title>Nodejscpp: ピボットテーブルを更新し計算項目を持つピボットテーブルを更新する</title>
      <link>https://docs.aspose.com/cells/ja/nodejs-cpp/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/ja/nodejs-cpp/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 for Node.js via C++は、計算項目を持つピボットテーブルの刷新と計算をサポートします。従って、通常通り &lt;a href=&#34;https://reference.aspose.com/cells/nodejs-cpp/pivottable/#refreshdata--&#34;&gt;&lt;strong&gt;PivotTable.refreshData&lt;/strong&gt;&lt;/a&gt; と &lt;a href=&#34;https://reference.aspose.com/cells/nodejs-cpp/pivottable/#calculatedata--&#34;&gt;&lt;strong&gt;PivotTable.calculateData&lt;/strong&gt;&lt;/a&gt;を使ってこの機能を実行してください。
&lt;/div&gt;

&lt;h2 id=&#34;計算項目を持つピボットテーブルを更新および計算する&#34;&gt;&lt;strong&gt;計算項目を持つピボットテーブルを更新および計算する&lt;/strong&gt;&lt;/h2&gt;
&lt;p&gt;次のサンプルコードは、&lt;a href=&#34;5115238.xlsx&#34;&gt;ソースExcelファイル&lt;/a&gt;をロードします。このファイルは、&amp;ldquo;add&amp;rdquo;、&amp;ldquo;div&amp;rdquo;、&amp;ldquo;div2&amp;quot;などの3つの計算項目を持つピボットテーブルを含みます。最初にセルD2の値を20に変更し、その後Aspose.Cells for Node.js via C++ APIを使ってピボットテーブルを更新・計算し、ワークブックをPDF形式で保存します。結果として、&lt;a href=&#34;5115229.pdf&#34;&gt;出力PDF&lt;/a&gt;は、Aspose.Cells for Node.js via C++が計算項目を持つピボットテーブルを正しく更新・計算したことを示しています。この操作をMicrosoft Excelで手動で行い、セルD2に20を入力してピボットテーブルを更新（Alt+F5キーまたはリフレッシュボタンをクリック）して検証できます。&lt;/p&gt;
&lt;script type=&#34;application/javascript&#34; src=&#34;https://gist.github.com/aspose-cells-gists/c7b55cbeb75eaaae989115230a7619eb.js?file=PivotTable-RefreshAndCalculateItems-1.js&#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/nodejs-cpp?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;


      </description>
    </item>
    
    <item>
      <title>Nodejscpp: 親ピボットテーブルのネストされたピボットテーブルや子ピボットテーブルを見つけて更新する</title>
      <link>https://docs.aspose.com/cells/ja/nodejs-cpp/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/ja/nodejs-cpp/find-and-refresh-the-nested-or-children-pivot-tables-of-parent-pivot-table/</guid>
      <description>
        
        
        &lt;h2 id=&#34;可能な使用シナリオ&#34;&gt;&lt;strong&gt;可能な使用シナリオ&lt;/strong&gt;&lt;/h2&gt;
&lt;p&gt;親ピボットテーブルが別のピボットテーブルをデータソースとして使用する場合、それを子ピボットテーブルやネストされたピボットテーブルと呼びます。&lt;a href=&#34;https://reference.aspose.com/cells/nodejs-cpp/pivottable/#getChildren--&#34;&gt;&lt;strong&gt;PivotTable.getChildren()&lt;/strong&gt;&lt;/a&gt;を使用して親ピボットテーブルの子ピボットテーブルを見つけることができます。&lt;/p&gt;
&lt;h2 id=&#34;親ピボットテーブルのネストされたまたは子供のピボットテーブルを検出および更新する方法&#34;&gt;&lt;strong&gt;親ピボットテーブルのネストされたまたは子供のピボットテーブルを検出および更新する方法&lt;/strong&gt;&lt;/h2&gt;
&lt;p&gt;次のサンプルコードでは、3つのピボットテーブルを含む&lt;a href=&#34;61767747.xlsx&#34;&gt;サンプルExcelファイル&lt;/a&gt;をロードし、その下の2つのピボットテーブルが、このスクリーンショットに示すように、上記のピボットテーブルの子であることを示しています。コードは、&lt;a href=&#34;https://reference.aspose.com/cells/nodejs-cpp/pivottable/#getChildren--&#34;&gt;&lt;strong&gt;PivotTable.getChildren()&lt;/strong&gt;&lt;/a&gt;を使用して子ピボットテーブルを見つけ、それぞれを更新します。&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;サンプルコード&#34;&gt;&lt;strong&gt;サンプルコード&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/c7b55cbeb75eaaae989115230a7619eb.js?file=PivotTables-FindAndRefreshNestedOrChildrenPivotTables.js&#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/nodejs-cpp?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>Nodejscpp: ピボットテーブルのリフレッシュ日時とリフレッシュ実行者情報の取得</title>
      <link>https://docs.aspose.com/cells/ja/nodejs-cpp/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/ja/nodejs-cpp/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 for Node.js via C++は、ワークブックから更新日時と更新者情報を取得できる機能をサポートしました。
&lt;/div&gt;

&lt;h2 id=&#34;ピボットテーブルの更新日付と更新者情報を取得する方法&#34;&gt;&lt;strong&gt;ピボットテーブルの更新日付と更新者情報を取得する方法&lt;/strong&gt;&lt;/h2&gt;
&lt;p&gt;&lt;a href=&#34;https://reference.aspose.com/cells/nodejs-cpp/pivottable/#getRefreshDate--&#34;&gt;&lt;strong&gt;PivotTable.getRefreshDate()&lt;/strong&gt;&lt;/a&gt;はピボットテーブルレポートが最後に更新された日付を返します。同様に、&lt;a href=&#34;https://reference.aspose.com/cells/nodejs-cpp/pivottable/#getRefreshedByWho--&#34;&gt;&lt;strong&gt;PivotTable.getRefreshedByWho()&lt;/strong&gt;&lt;/a&gt;プロパティはレポートを最後に更新したユーザーの名前を返します。以下の例はこの機能をデモンストレーションし、サンプルファイルは以下のリンクからダウンロードできます。&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;サンプルコード&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/c7b55cbeb75eaaae989115230a7619eb.js?file=PivotTables-GetPivotTableRefreshDate-1.js&#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/nodejs-cpp?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>
