<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
  <channel>
    <title>Documentation – Wertfelder einer PivotTable in Aspose.Cells für .NET verwalten</title>
    <link>https://docs.aspose.com/cells/de/python-net/manage-value-fields/</link>
    <description>Recent content in Wertfelder einer PivotTable in Aspose.Cells für .NET verwalten on Documentation</description>
    <generator>Hugo -- gohugo.io</generator>
    <language>de</language>
    
	  <atom:link href="https://docs.aspose.com/cells/de/python-net/manage-value-fields/index.xml" rel="self" type="application/rss+xml" />
    
    
      
        
      
    
    
    <item>
      <title>Pythonnet: Konsolidierungsfunktion</title>
      <link>https://docs.aspose.com/cells/de/python-net/consolidation-function/</link>
      <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
      
      <guid>https://docs.aspose.com/cells/de/python-net/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 für Python via .NET kann die Konsolidierungsfunktion auf Datenfelder (oder Wertefelder) der Pivottabelle 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 anschließend den Tab &lt;strong&gt;Werte zusammenfassen nach&lt;/strong&gt; wählen. Von dort aus können Sie jede gewünschte Konsolidierungsfunktion auswählen, wie Summe, Anzahl, Durchschnitt, Max, Min, Produkt, Distinct Count, usw.&lt;/p&gt;
&lt;p&gt;Aspose.Cells für Python via .NET bietet die &lt;a href=&#34;https://reference.aspose.com/cells/python-net/aspose.cells/consolidationfunction/&#34;&gt;&lt;strong&gt;ConsolidationFunction&lt;/strong&gt;&lt;/a&gt; Aufzählung zur Unterstützung der folgenden Konsolidierungsfunktionen.&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;ConsolidationFunction.AVERAGE&lt;/li&gt;
&lt;li&gt;ConsolidationFunction.COUNT&lt;/li&gt;
&lt;li&gt;ConsolidationFunction.COUNT_NUMS&lt;/li&gt;
&lt;li&gt;ConsolidationFunction.DISTINCT_COUNT&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.STD_DEV&lt;/li&gt;
&lt;li&gt;ConsolidationFunction.STD_DEVP&lt;/li&gt;
&lt;li&gt;ConsolidationFunction.SUM&lt;/li&gt;
&lt;li&gt;ConsolidationFunction.VAR&lt;/li&gt;
&lt;li&gt;ConsolidationFunction.VARP&lt;/li&gt;
&lt;/ul&gt;
&lt;h2 id=&#34;wie-man-die-consolidationfunction-auf-datenfelder-des-pivot-tables-mit-der-asposecells-für-die-excel-bibliothek-für-python-anwendet&#34;&gt;&lt;strong&gt;Wie man die ConsolidationFunction auf Datenfelder des Pivot-Tables mit der Aspose.Cells für die Excel-Bibliothek für Python anwendet&lt;/strong&gt;&lt;/h2&gt;
&lt;p&gt;Der folgende Code wendet die &lt;strong&gt;AVERAGE&lt;/strong&gt;-Konsolidierungsfunktion auf das erste Datenfeld (oder Wertefeld) und die &lt;strong&gt;DISTINCT_COUNT&lt;/strong&gt;-Konsolidierungsfunktion auf das zweite Datenfeld (oder Wertefeld) an.&lt;/p&gt;
&lt;script type=&#34;application/javascript&#34; src=&#34;https://gist.github.com/aspose-cells-gists/7bb30376b4d40cdfd596286870fb9752.js?file=PivotTables-ConsolidationFunctions-1.py&#34;&gt;&lt;/script&gt;

&lt;p&gt;

&lt;div class=&#34;alert alert-primary&#34; role=&#34;alert&#34;&gt;

Die DISTINCT_COUNT-Konsolidierungsfunktion 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/python-net?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>Pythonnet: Arbeiten mit Datenanzeigeformaten von DataField im Pivot Table</title>
      <link>https://docs.aspose.com/cells/de/python-net/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/python-net/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 für Python via .NET unterstützt alle Datenanzeigeformate von DataField.
&lt;/div&gt;

&lt;h2 id=&#34;wie-man-die-display-formatoption-von-klein-nach-groß-und-von-groß-nach-klein-einstellt&#34;&gt;&lt;strong&gt;Wie man die Display-Formatoption &amp;ldquo;Von klein nach groß&amp;rdquo; und &amp;ldquo;Von groß nach klein&amp;rdquo; einstellt&lt;/strong&gt;&lt;/h2&gt;
&lt;p&gt;Aspose.Cells für Python via .NET bietet die Möglichkeit, die Anzeigeformatoption für Pivot-Felder festzulegen. Hierfür bietet die API die &lt;a href=&#34;https://reference.aspose.com/cells/python-net/aspose.cells.pivot/pivotfield/data_display_format/&#34;&gt;&lt;strong&gt;PivotField.data_display_format&lt;/strong&gt;&lt;/a&gt;-Eigenschaft. Um von groß nach klein zu rangieren, können Sie die &lt;a href=&#34;https://reference.aspose.com/cells/python-net/aspose.cells.pivot/pivotfield/data_display_format/&#34;&gt;&lt;strong&gt;PivotField.data_display_format&lt;/strong&gt;&lt;/a&gt;-Eigenschaft auf &lt;a href=&#34;https://reference.aspose.com/cells/python-net/aspose.cells.pivot/pivotfielddatadisplayformat/&#34;&gt;&lt;strong&gt;PivotFieldDataDisplayFormat.RANK_LARGEST_TO_SMALLEST&lt;/strong&gt;&lt;/a&gt; setzen. Der folgende Code 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;101089332.xlsx&#34;&gt;Quell-Excel-Datei&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;a href=&#34;101089333.xlsx&#34;&gt;Ausgabe-Excel-Datei&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/7bb30376b4d40cdfd596286870fb9752.js?file=PivotTables-PivotTableDataDisplayFormatRanking-1.py&#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/python-net?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>
