<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
  <channel>
    <title>Documentation – إدارة حقول القيم في الجدول المحوري في Aspose.Cells لـ .NET</title>
    <link>https://docs.aspose.com/cells/ar/python-net/manage-value-fields/</link>
    <description>Recent content in إدارة حقول القيم في الجدول المحوري في Aspose.Cells لـ .NET on Documentation</description>
    <generator>Hugo -- gohugo.io</generator>
    <language>ar</language>
    
	  <atom:link href="https://docs.aspose.com/cells/ar/python-net/manage-value-fields/index.xml" rel="self" type="application/rss+xml" />
    
    
      
        
      
    
    
    <item>
      <title>Pythonnet: وظيفة التوحيد</title>
      <link>https://docs.aspose.com/cells/ar/python-net/consolidation-function/</link>
      <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
      
      <guid>https://docs.aspose.com/cells/ar/python-net/consolidation-function/</guid>
      <description>
        
        
        &lt;h2 id=&#34;وظيفة-التوحيد&#34;&gt;&lt;strong&gt;وظيفة التوحيد&lt;/strong&gt;&lt;/h2&gt;
&lt;p&gt;يمكن استخدام Aspose.Cells للبايثون via .NET لتطبيق وظيفة التوحيد على حقول البيانات (أو حقول القيم) في جدول الدوران. في Microsoft Excel، يمكنك النقر بزر الماوس الأيمن فوق حقل القيم ثم اختيار خيار &lt;strong&gt;إعدادات حقل القيم&amp;hellip;&lt;/strong&gt; ومن ثم تحديد علامة تبويب &lt;strong&gt;تلخيص القيم بواسطة&lt;/strong&gt;. من هناك، يمكنك تحديد أي وظيفة توحيد تفضلها مثل المجموع، العدد، المتوسط، الحد الأقصى، الحد الأدنى، الإنتاج، العد الفردي، الخ.&lt;/p&gt;
&lt;p&gt;توفر Aspose.Cells للبايثون via .NET تعدادًا &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; لدعم وظائف التوحيد التالية.&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;كيفية-تطبيق-consolidationfunction-على-حقول-البيانات-في-جدول-الإحاطة-باستخدام-مكتبة-asposecells-لـ-python-excel&#34;&gt;&lt;strong&gt;كيفية تطبيق ConsolidationFunction على حقول البيانات في جدول الإحاطة باستخدام مكتبة Aspose.Cells لـ Python Excel&lt;/strong&gt;&lt;/h2&gt;
&lt;p&gt;الكود التالي يطبق وظيفة التوحيد &lt;strong&gt;AVERAGE&lt;/strong&gt; على الحقل الأول للبيانات (أو حقل القيمة) ووظيفة التوحيد &lt;strong&gt;DISTINCT_COUNT&lt;/strong&gt; على الحقل الثاني للبيانات (أو حقل القيمة).&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;div class=&#34;alert alert-primary&#34; role=&#34;alert&#34;&gt;

وظيفة التوحيد DISTINCT_COUNT مدعومة فقط في Microsoft Excel 2013.
&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;


      </description>
    </item>
    
    <item>
      <title>Pythonnet: العمل مع تنسيقات عرض البيانات لحقل البيانات في جدول الإحصائيات المحورية</title>
      <link>https://docs.aspose.com/cells/ar/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/ar/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 for Python via .NET يدعم جميع صيغ عرض بيانات حقل البيانات.
&lt;/div&gt;

&lt;h2 id=&#34;كيفية-تعيين-خيار-تصنيفات-من-الأصغر-إلى-الأكبر-و-تصنيفات-من-الأكبر-إلى-الأصغر-لخيار-صيغة-العرض&#34;&gt;&lt;strong&gt;كيفية تعيين خيار &amp;ldquo;تصنيفات من الأصغر إلى الأكبر&amp;rdquo; و &amp;ldquo;تصنيفات من الأكبر إلى الأصغر&amp;rdquo; لخيار صيغة العرض&lt;/strong&gt;&lt;/h2&gt;
&lt;p&gt;Aspose.Cells for Python via .NET يوفر القدرة على تعيين خيارات صيغة العرض لحقول Pivot. لهذا، يقدم الواجهة البرمجية الخاصية &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;. لتصنيف من الأكبر إلى الأصغر، يمكنك تعيين الخاصية &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;  إلى &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;. يوضح مقتطف الكود التالي تعيين خيارات صيغة العرض.&lt;/p&gt;
&lt;p&gt;يمكن تنزيل ملفات الأصل والإخراج العينية من هنا لاختبار كود العينة:&lt;/p&gt;
&lt;p&gt;&lt;a href=&#34;101089332.xlsx&#34;&gt;ملف إكسل المصدر&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;a href=&#34;101089333.xlsx&#34;&gt;ملف إكسل الإخراج&lt;/a&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;


      </description>
    </item>
    
  </channel>
</rss>
