<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
  <channel>
    <title>Documentation – Wertfelder in Aspose.Cells for Java</title>
    <link>https://docs.aspose.com/cells/de/java/manage-value-fields/</link>
    <description>Recent content in Wertfelder in Aspose.Cells for Java on Documentation</description>
    <generator>Hugo -- gohugo.io</generator>
    <language>de</language>
    
	  <atom:link href="https://docs.aspose.com/cells/de/java/manage-value-fields/index.xml" rel="self" type="application/rss+xml" />
    
    
      
        
      
    
    
    <item>
      <title>Java: Konsolidierungsfunktion</title>
      <link>https://docs.aspose.com/cells/de/java/consolidation-function/</link>
      <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
      
      <guid>https://docs.aspose.com/cells/de/java/consolidation-function/</guid>
      <description>
        
        
        &lt;h2 id=&#34;konsolidierungsfunktion&#34;&gt;&lt;strong&gt;Konsolidierungsfunktion&lt;/strong&gt;&lt;/h2&gt;
&lt;p&gt;Mit Aspose.Cells kann die Konsolidierungsfunktion auf Datenfelder (oder Wertefelder) der Pivot-Tabelle angewendet werden. In Microsoft Excel können Sie mit der rechten Maustaste auf das Wertefeld klicken und dann die Option &lt;strong&gt;Wertfeldeinstellungen&amp;hellip;&lt;/strong&gt; auswählen, und dann den Tab &lt;strong&gt;Werte zusammenfassen nach&lt;/strong&gt; auswählen. Von dort aus können Sie eine Konsolidierungsfunktion Ihrer Wahl wie Summe, Anzahl, Durchschnitt, Maximum, Minimum, Produkt, Eindeutige Anzahl usw. auswählen.&lt;/p&gt;
&lt;p&gt;Aspose.Cells bietet die Aufzählung &lt;a href=&#34;https://reference.aspose.com/cells/java/com.aspose.cells/ConsolidationFunction&#34;&gt;&lt;strong&gt;ConsolidationFunction&lt;/strong&gt;&lt;/a&gt;, um die folgenden Konsolidierungsfunktionen zu unterstützen.&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;ConsolidationFunction.SUM&lt;/li&gt;
&lt;li&gt;ConsolidationFunction.COUNT&lt;/li&gt;
&lt;li&gt;ConsolidationFunction.AVERAGE&lt;/li&gt;
&lt;li&gt;ConsolidationFunction.MAX&lt;/li&gt;
&lt;li&gt;ConsolidationFunction.MIN&lt;/li&gt;
&lt;li&gt;ConsolidationFunction.PRODUCT&lt;/li&gt;
&lt;li&gt;ConsolidationFunction.COUNT_NUMS&lt;/li&gt;
&lt;li&gt;ConsolidationFunction.STD_DEV&lt;/li&gt;
&lt;li&gt;ConsolidationFunction.STD_DEVP&lt;/li&gt;
&lt;li&gt;ConsolidationFunction.VAR&lt;/li&gt;
&lt;li&gt;ConsolidationFunction.VARP&lt;/li&gt;
&lt;li&gt;ConsolidationFunction.DISTINCT_COUNT&lt;/li&gt;
&lt;/ul&gt;
&lt;h3 id=&#34;anwendung-von-consolidationfunction-auf-datenfelder-des-pivot-tabellen&#34;&gt;&lt;strong&gt;Anwendung von ConsolidationFunction auf Datenfelder des Pivot-Tabellen&lt;/strong&gt;&lt;/h3&gt;
&lt;p&gt;Der folgende Code wendet die Konsolidierungsfunktion &lt;strong&gt;AVERAGE&lt;/strong&gt; auf das erste Datenfeld (oder Wertfeld) und die Konsolidierungsfunktion &lt;strong&gt;STD_DEV&lt;/strong&gt; auf das zweite Datenfeld (oder Wertfeld) an.&lt;/p&gt;
&lt;p&gt;Die Beispieldatei und die Ausgabedateien können von hier heruntergeladen werden, um den Beispielcode zu testen:&lt;/p&gt;
&lt;p&gt;&lt;a href=&#34;source.xlsx&#34;&gt;Quelldatei Excel&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;a href=&#34;output.xlsx&#34;&gt;Ausgabedatei Excel&lt;/a&gt;&lt;/p&gt;
&lt;script type=&#34;application/javascript&#34; src=&#34;https://gist.github.com/aspose-cells-gists/5876dc77e47649b66bdb5deefb4b5639.js?file=Examples-src-main-java-com-aspose-cells-examples-PivotTables-CreatePivotTable-ConsolidationFunction.java&#34;&gt;&lt;/script&gt;



&lt;div class=&#34;alert alert-primary&#34; role=&#34;alert&#34;&gt;

Die Konsolidierungsfunktion DistinctCount wird nur von Microsoft Excel 2013 unterstützt.
&lt;/div&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/java?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>Java: Arbeiten mit Datenanzeigeformaten von DataField im Pivot Table</title>
      <link>https://docs.aspose.com/cells/de/java/working-with-data-display-formats-of-datafield-in-pivot-table/</link>
      <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
      
      <guid>https://docs.aspose.com/cells/de/java/working-with-data-display-formats-of-datafield-in-pivot-table/</guid>
      <description>
        
        
        

&lt;div class=&#34;alert alert-primary&#34; role=&#34;alert&#34;&gt;

Aspose.Cells unterstützt alle Datenanzeigeformate von DataField.
&lt;/div&gt;

&lt;h2 id=&#34;rang-kleinste-bis-größte-und-rang-größte-bis-kleinste-anzeigeformat-option&#34;&gt;&lt;strong&gt;&amp;ldquo;Rang Kleinste bis Größte&amp;rdquo; und &amp;ldquo;Rang Größte bis Kleinste&amp;rdquo; Anzeigeformat-Option&lt;/strong&gt;&lt;/h2&gt;
&lt;p&gt;Aspose.Cells bietet die Möglichkeit, die Anzeigeformatoptionen für Pivot-Felder festzulegen. Für dies bietet die API die Eigenschaft &lt;a href=&#34;https://reference.aspose.com/cells/java/com.aspose.cells/pivotfield#DataDisplayFormat&#34;&gt;&lt;strong&gt;PivotField.DataDisplayFormat&lt;/strong&gt;&lt;/a&gt;. Um von größtem zu kleinestem Rang zu sortieren, können Sie die &lt;a href=&#34;https://reference.aspose.com/cells/java/com.aspose.cells/pivotfield#DataDisplayFormat&#34;&gt;&lt;strong&gt;PivotField.DataDisplayFormat&lt;/strong&gt;&lt;/a&gt; Eigenschaft auf &lt;a href=&#34;https://reference.aspose.com/cells/java/com.aspose.cells/pivotfielddatadisplayformat#RANK-LARGEST-TO-SMALLEST&#34;&gt;&lt;strong&gt;PivotFieldDataDisplayFormat.RANK_LARGEST_TO_SMALLEST&lt;/strong&gt;&lt;/a&gt; setzen. Der folgende Codeausschnitt zeigt das Festlegen der Anzeigeformatoptionen.&lt;/p&gt;
&lt;p&gt;Die Beispielsquell- und Ausgabedateien können hier für das Testen des Beispielcodes heruntergeladen werden:&lt;/p&gt;
&lt;p&gt;&lt;a href=&#34;PivotTableSample.xlsx&#34;&gt;Quelldatei Excel&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;a href=&#34;PivotTableDataDisplayFormatRanking_out.xlsx&#34;&gt;Ausgabedatei Excel&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;script type=&#34;application/javascript&#34; src=&#34;https://gist.github.com/aspose-cells-gists/5876dc77e47649b66bdb5deefb4b5639.js?file=Examples-src-AsposeCellsExamples-PivotTables-PivotTableDataDisplayFormatRanking-1.java&#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/java?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>
