<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: HOW TO SUM A VARIABLE THAT COMES FROM A MEASURE in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/HOW-TO-SUM-A-VARIABLE-THAT-COMES-FROM-A-MEASURE/m-p/2778618#M86880</link>
    <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="403972" data-lia-user-login="v-jianboli-msft" class="lia-mention lia-mention-user"&gt;v-jianboli-msft&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you again for your help!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I was taking a look to the formulas and found something strange.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;I have this case where the % Cumplimiento is not being calculated properly. Maybe you can find why?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I uploaded the document I'm working on in the same link.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;A href="https://drive.google.com/drive/folders/1BpRDGXwfnV7QKtacQkmnR9kM7pIuxH06" target="_blank"&gt;https://drive.google.com/drive/folders/1BpRDGXwfnV7QKtacQkmnR9kM7pIuxH06&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Than you!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Mon, 19 Sep 2022 19:44:42 GMT</pubDate>
    <dc:creator>valentinaliac</dc:creator>
    <dc:date>2022-09-19T19:44:42Z</dc:date>
    <item>
      <title>HOW TO SUM A VARIABLE THAT COMES FROM A MEASURE</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/HOW-TO-SUM-A-VARIABLE-THAT-COMES-FROM-A-MEASURE/m-p/2753823#M85047</link>
      <description>&lt;P&gt;Hello guys!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have to resume values from 3 different lines of production, which are "Lee Pack", "Rad Pack" and "Manual". To calculate the variable "Velocidad teorica" I use this conditional:&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Velocidad teorica =&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;IF&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;OR&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;[promedio]&lt;/SPAN&gt;&lt;SPAN&gt;=&lt;/SPAN&gt;&lt;SPAN&gt;1&lt;/SPAN&gt;&lt;SPAN&gt;,&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;[promedio]&lt;/SPAN&gt;&lt;SPAN&gt;=&lt;/SPAN&gt;&lt;SPAN&gt;2&lt;/SPAN&gt;&lt;SPAN&gt;), (&lt;/SPAN&gt;&lt;SPAN&gt;SUM&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;Estandares[Rendimiento maquina]&lt;/SPAN&gt;&lt;SPAN&gt;)/&lt;/SPAN&gt;&lt;SPAN&gt;450&lt;/SPAN&gt;&lt;SPAN&gt;),&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;IF&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;[promedio]&lt;/SPAN&gt;&lt;SPAN&gt;=&lt;/SPAN&gt;&lt;SPAN&gt;3&lt;/SPAN&gt;&lt;SPAN&gt;,(&lt;/SPAN&gt;&lt;SPAN&gt;SUM&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;Estandares[Rendimiento manual]&lt;/SPAN&gt;&lt;SPAN&gt;)/&lt;/SPAN&gt;&lt;SPAN&gt;450&lt;/SPAN&gt;&lt;SPAN&gt;),&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;"0"&lt;/SPAN&gt;&lt;SPAN&gt;))&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;where 1 means "Lee Pack", 2 means "Rad Pack" and 3 means "Manual"&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Due to it is a conditional, in the table's total the value shown is the condition &lt;EM&gt;if false&lt;/EM&gt; from the second conditional. &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Other variable is "Tiempo Teórico" where&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;tiempo teorico =&amp;nbsp;sum(Hora[No. Unidades])/[Velocidad teorica]&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;so if "Velocidad teórica" is 0, then it would show infinite.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Lastly,&amp;nbsp;the variable "% CUMPLIMIENTO" is calculated:&lt;BR /&gt;% CUMPLIMIENTO = if(([tiempo teorico]/[tiempo real])&amp;gt;100, "0", ([tiempo teorico]/[tiempo real]))&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;My problem is that I can´t visualize the sum of "tiempo teórico", and i Think its because the conditional, same as "velocidad teórica" and "% cumplimiento". Do you know a way to do it?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;The data table is available in the link&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;A href="https://drive.google.com/drive/folders/1BpRDGXwfnV7QKtacQkmnR9kM7pIuxH06?usp=sharing" target="_blank"&gt;https://docs.google.com/spreadsheets/d/1QcCAdk9oMWi__oWiYaWkTop5OXn5feCg/edit?usp=sharing&amp;amp;ouid=103939786031930093563&amp;amp;rtpof=true&amp;amp;sd=true&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://drive.google.com/drive/folders/1BpRDGXwfnV7QKtacQkmnR9kM7pIuxH06?usp=sharing" target="_blank"&gt;https://drive.google.com/drive/folders/1BpRDGXwfnV7QKtacQkmnR9kM7pIuxH06?usp=sharing&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 07 Sep 2022 19:42:36 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/HOW-TO-SUM-A-VARIABLE-THAT-COMES-FROM-A-MEASURE/m-p/2753823#M85047</guid>
      <dc:creator>valentinaliac</dc:creator>
      <dc:date>2022-09-07T19:42:36Z</dc:date>
    </item>
    <item>
      <title>Re: HOW TO SUM A VARIABLE THAT COMES FROM A MEASURE</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/HOW-TO-SUM-A-VARIABLE-THAT-COMES-FROM-A-MEASURE/m-p/2754296#M85086</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="374212" data-lia-user-login="valentinaliac" class="lia-mention lia-mention-user"&gt;valentinaliac&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;What is the relationship between your tables and what is the other measures(such as [&lt;SPAN&gt;tiempo real]&lt;/SPAN&gt;)?&lt;/P&gt;
&lt;P&gt;I can't reproduce your problem just from your source data, need more details about your PBIX file.&lt;/P&gt;
&lt;P&gt;Can you please share more details to help us clarify your scenario?&lt;/P&gt;
&lt;P&gt;Please provide me with more details about your table and your problem or share me with your pbix file after&amp;nbsp;&lt;STRONG&gt;removing sensitive data.&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Refer to:&lt;/P&gt;
&lt;P&gt;&lt;A href="https://nam06.safelinks.protection.outlook.com/?url=https%3A%2F%2Fcommunity.powerbi.com%2Ft5%2FCommunity-Blog%2FHow-to-provide-sample-data-in-the-Power-BI-Forum%2Fba-p%2F963216&amp;amp;data=05%7C01%7Cv-jianboli%40microsoft.com%7Ca7ce12be0f454896a61208da8034281b%7C72f988bf86f141af91ab2d7cd011db47%7C1%7C0%7C637963258750159993%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000%7C%7C%7C&amp;amp;sdata=orVyE0%2FImc2MEFUqXtCveK0uf33594f67ZDxb8ybuNI%3D&amp;amp;reserved=0" target="_blank"&gt;How to provide sample data in the Power BI Forum&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://nam06.safelinks.protection.outlook.com/?url=https%3A%2F%2Fcommunity.powerbi.com%2Ft5%2FCommunity-Blog%2FHow-to-Get-Your-Question-Answered-Quickly%2Fba-p%2F38490&amp;amp;data=05%7C01%7Cv-jianboli%40microsoft.com%7Ca7ce12be0f454896a61208da8034281b%7C72f988bf86f141af91ab2d7cd011db47%7C1%7C0%7C637963258750159993%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000%7C%7C%7C&amp;amp;sdata=XocTq9o6TjxbxJqTak20E3kKp7q5HxKTNZef7xESMV0%3D&amp;amp;reserved=0" target="_blank"&gt;How to Get Your Question Answered Quickly&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Best Regards,&lt;/P&gt;
&lt;P&gt;Jianbo Li&lt;/P&gt;
&lt;P&gt;If this post&amp;nbsp;&lt;STRONG&gt;&lt;EM&gt;helps&lt;/EM&gt;&lt;/STRONG&gt;, then please consider&amp;nbsp;&lt;STRONG&gt;&lt;EM&gt;Accept it as the solution&lt;/EM&gt;&lt;/STRONG&gt;&amp;nbsp;to help the other members find it more quickly.&lt;/P&gt;</description>
      <pubDate>Thu, 08 Sep 2022 05:19:46 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/HOW-TO-SUM-A-VARIABLE-THAT-COMES-FROM-A-MEASURE/m-p/2754296#M85086</guid>
      <dc:creator>v-jianboli-msft</dc:creator>
      <dc:date>2022-09-08T05:19:46Z</dc:date>
    </item>
    <item>
      <title>Re: HOW TO SUM A VARIABLE THAT COMES FROM A MEASURE</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/HOW-TO-SUM-A-VARIABLE-THAT-COMES-FROM-A-MEASURE/m-p/2756496#M85234</link>
      <description>&lt;P&gt;Hi,&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="403972" data-lia-user-login="v-jianboli-msft" class="lia-mention lia-mention-user"&gt;v-jianboli-msft&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you for the interest!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I´ve posted the pbix file in the link. Let me know if you have more questions!&lt;/P&gt;&lt;P&gt;&lt;A href="https://drive.google.com/drive/folders/1BpRDGXwfnV7QKtacQkmnR9kM7pIuxH06?usp=sharing" target="_blank" rel="nofollow noopener noreferrer"&gt;https://drive.google.com/drive/folders/1BpRDGXwfnV7QKtacQkmnR9kM7pIuxH06?usp=sharing&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 08 Sep 2022 20:14:56 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/HOW-TO-SUM-A-VARIABLE-THAT-COMES-FROM-A-MEASURE/m-p/2756496#M85234</guid>
      <dc:creator>valentinaliac</dc:creator>
      <dc:date>2022-09-08T20:14:56Z</dc:date>
    </item>
    <item>
      <title>Re: HOW TO SUM A VARIABLE THAT COMES FROM A MEASURE</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/HOW-TO-SUM-A-VARIABLE-THAT-COMES-FROM-A-MEASURE/m-p/2761367#M85607</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="374212" data-lia-user-login="valentinaliac" class="lia-mention lia-mention-user"&gt;valentinaliac&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Based on your sample, I have modified some of your measure, please try:&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;New velocidad real = SUMX(FILTER('Hora',[Total de horas]&amp;lt;&amp;gt;0),[No. Unidades]/([Total de horas]*60))

New Velocidad teorica =
VAR _a =
    ADDCOLUMNS (
        SUMMARIZE (
            'Hora',
            'Hora'[Hora inicial],
            'Hora'[No. Unidades],
            'Hora'[Empaque]
        ),
        "VT",
            IF (
                OR ( [promedio] = 1, [promedio] = 2 ),
                ( SUM ( Estandares[Rendimiento maquina] ) / 450 ),
                IF ( [promedio] = 3, ( SUM ( Estandares[Rendimiento manual] ) / 450 ), "0" )
            ),
        "PREVISTAS", [PREVISTAS],
        "ProductionReal", [Produccion real]
    )
VAR _b =
    DISTINCT (
        FILTER ( _a, [PREVISTAS] &amp;lt;&amp;gt; BLANK () &amp;amp;&amp;amp; [ProductionReal] &amp;lt;&amp;gt; BLANK () )
    )
RETURN
    SUMX ( _b, [VT] )

New % CUMPLIMIENTO =
VAR _a =
    SUMMARIZE (
        'Hora',
        'Hora'[Hora inicial],
        'Hora'[No. Unidades],
        'Hora'[Empaque]
    )
VAR _b =
    ADDCOLUMNS (
        _a,
        "%",
            IF (
                ( [tiempo teorico] / [total minuto] ) &amp;gt; 100,
                "0",
                ( [tiempo teorico] / [total minuto] )
            )
    )
RETURN
    SUMX ( FILTER ( _b, [total minuto] &amp;lt;&amp;gt; 0 &amp;amp;&amp;amp; [tiempo teorico] &amp;lt;&amp;gt; BLANK () ), [%] )
&lt;/LI-CODE&gt;
&lt;P&gt;Final output:&lt;/P&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P style="background: white; margin: 7.5pt 0in 0in 0in;"&gt;&lt;SPAN&gt;Best Regards,&lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="background: white; margin: 7.5pt 0in 0in 0in;"&gt;&lt;SPAN&gt;Jianbo Li&lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="background: white; margin: 7.5pt 0in 0in 0in;"&gt;&lt;SPAN&gt;If this post&amp;nbsp;&lt;STRONG&gt;&lt;I&gt;helps&lt;/I&gt;&lt;/STRONG&gt;, then please consider&amp;nbsp;&lt;STRONG&gt;&lt;I&gt;Accept it as the solution&lt;/I&gt;&lt;/STRONG&gt;&amp;nbsp;to help the other members find it more quickly.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 12 Sep 2022 09:16:45 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/HOW-TO-SUM-A-VARIABLE-THAT-COMES-FROM-A-MEASURE/m-p/2761367#M85607</guid>
      <dc:creator>v-jianboli-msft</dc:creator>
      <dc:date>2022-09-12T09:16:45Z</dc:date>
    </item>
    <item>
      <title>Re: HOW TO SUM A VARIABLE THAT COMES FROM A MEASURE</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/HOW-TO-SUM-A-VARIABLE-THAT-COMES-FROM-A-MEASURE/m-p/2778618#M86880</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="403972" data-lia-user-login="v-jianboli-msft" class="lia-mention lia-mention-user"&gt;v-jianboli-msft&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you again for your help!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I was taking a look to the formulas and found something strange.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;I have this case where the % Cumplimiento is not being calculated properly. Maybe you can find why?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I uploaded the document I'm working on in the same link.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;A href="https://drive.google.com/drive/folders/1BpRDGXwfnV7QKtacQkmnR9kM7pIuxH06" target="_blank"&gt;https://drive.google.com/drive/folders/1BpRDGXwfnV7QKtacQkmnR9kM7pIuxH06&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Than you!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 19 Sep 2022 19:44:42 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/HOW-TO-SUM-A-VARIABLE-THAT-COMES-FROM-A-MEASURE/m-p/2778618#M86880</guid>
      <dc:creator>valentinaliac</dc:creator>
      <dc:date>2022-09-19T19:44:42Z</dc:date>
    </item>
    <item>
      <title>Re: HOW TO SUM A VARIABLE THAT COMES FROM A MEASURE</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/HOW-TO-SUM-A-VARIABLE-THAT-COMES-FROM-A-MEASURE/m-p/2786247#M87341</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="374212" data-lia-user-login="valentinaliac" class="lia-mention lia-mention-user"&gt;valentinaliac&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;After my test, the calculation of "New&amp;nbsp;&lt;SPAN&gt;&amp;nbsp;% Cumplimiento" Works fine, this issue is caused by the aggregation of No.Unidades.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Please check and make sure it is using "Don't Summarize". In your sample, it is using Sum, so the calculation looks wrong.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Best Regards,&lt;/P&gt;
&lt;P&gt;Jianbo Li&lt;/P&gt;
&lt;P&gt;If this post&amp;nbsp;&lt;STRONG&gt;&lt;EM&gt;helps&lt;/EM&gt;&lt;/STRONG&gt;, then please consider&amp;nbsp;&lt;STRONG&gt;&lt;EM&gt;Accept it as the solution&lt;/EM&gt;&lt;/STRONG&gt;&amp;nbsp;to help the other members find it more quickly.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 22 Sep 2022 08:25:50 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/HOW-TO-SUM-A-VARIABLE-THAT-COMES-FROM-A-MEASURE/m-p/2786247#M87341</guid>
      <dc:creator>v-jianboli-msft</dc:creator>
      <dc:date>2022-09-22T08:25:50Z</dc:date>
    </item>
  </channel>
</rss>

