<?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 write measure in DAX to sum value for two particular warehouse codes in the same column in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-write-measure-in-DAX-to-sum-value-for-two-particular/m-p/3754204#M146467</link>
    <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="521828" data-lia-user-login="Walter_W2022" class="lia-mention lia-mention-user"&gt;Walter_W2022&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;In my table I have duplicates. It is giving me error in this line&lt;/P&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;"p_stock"&lt;/SPAN&gt;&lt;SPAN&gt;,&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;LOOKUPVALUE&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;warehouse&lt;/SPAN&gt;&lt;SPAN&gt;[stock]&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;warehouse&lt;/SPAN&gt;&lt;SPAN&gt;[warehouse_code]&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;/SPAN&gt;&lt;SPAN&gt;LEFT&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;[warehouse_code]&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;/SPAN&gt;&lt;SPAN&gt;4&lt;/SPAN&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;For one warehouse there are multiple rows. How can we aggregate this stock and lookup the value.&lt;/SPAN&gt;&lt;/DIV&gt;</description>
    <pubDate>Mon, 11 Mar 2024 07:10:37 GMT</pubDate>
    <dc:creator>BhargavVM</dc:creator>
    <dc:date>2024-03-11T07:10:37Z</dc:date>
    <item>
      <title>How to write measure in DAX to sum value for two particular warehouse codes in the same column</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-write-measure-in-DAX-to-sum-value-for-two-particular/m-p/3753778#M146450</link>
      <description>&lt;P&gt;Need help in adding the values for two warehouse codes in same column.&lt;/P&gt;&lt;P&gt;Please find the input data&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;My input data has two columns. Warehouse and Stock.&lt;/P&gt;&lt;P&gt;EX: NSWA is a main warehouse and NSWA-SW is sub warehouse and all other warehouse codes are small branches.&lt;/P&gt;&lt;P&gt;My goal is to sum the stock for all the warehouse codes ending with -SW (sub warehouse NSWA-SW ) and its respective main warehouse (NSWA). My measure should ignore all other warehouse codes.&lt;/P&gt;&lt;P&gt;Please find the output&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I could only get the value for the warehouse codes ending with -SW using calculate and filter warehouse code by Right 3 characters.&lt;/P&gt;&lt;P&gt;My Dax Query:&lt;/P&gt;&lt;P&gt;SW Warehouse = Calculate(sum(stock), filter(warehouse, right([warehouse code],3) = "-SW"))&lt;/P&gt;&lt;P&gt;I need the logic how to match the -sw warehouse codes with the respective main branch.&lt;BR /&gt;&lt;BR /&gt;I am using direct query for connection to semantic model cannot use power query.&lt;/P&gt;</description>
      <pubDate>Mon, 11 Mar 2024 02:38:19 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-write-measure-in-DAX-to-sum-value-for-two-particular/m-p/3753778#M146450</guid>
      <dc:creator>BhargavVM</dc:creator>
      <dc:date>2024-03-11T02:38:19Z</dc:date>
    </item>
    <item>
      <title>Re: How to write measure in DAX to sum value for two particular warehouse codes in the same column</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-write-measure-in-DAX-to-sum-value-for-two-particular/m-p/3753986#M146453</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="703332" data-lia-user-login="BhargavVM" class="lia-mention lia-mention-user"&gt;BhargavVM&lt;/a&gt;&amp;nbsp;, Please refer to below attached file, I created a virtual table to lookup the stock of parent warehouses, then sum them up to get total, please let me know if you have any questions.&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Result:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Virtual table created:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Model:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;A href="https://1drv.ms/u/s!AqoeLwPmopxmhOk9jqBhJsKKA32HMQ?e=FxC24L" target="_blank" rel="noopener"&gt;20240311-file.pbix&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 11 Mar 2024 05:34:23 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-write-measure-in-DAX-to-sum-value-for-two-particular/m-p/3753986#M146453</guid>
      <dc:creator>Walter_W2022</dc:creator>
      <dc:date>2024-03-11T05:34:23Z</dc:date>
    </item>
    <item>
      <title>Re: How to write measure in DAX to sum value for two particular warehouse codes in the same column</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-write-measure-in-DAX-to-sum-value-for-two-particular/m-p/3754110#M146459</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="521828" data-lia-user-login="Walter_W2022" class="lia-mention lia-mention-user"&gt;Walter_W2022&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;Thanks for your response.&lt;BR /&gt;In my case, I cannot add a new table to my data. I am using direct query mode connecting to the PowerBi semantic model. (My report does not allow me to create either calculated table or calculated column).&lt;/P&gt;&lt;P&gt;It is tricky to work with measure in this case. If you have any alternate solutions using measure, your help will be much appreciated.&lt;BR /&gt;&lt;BR /&gt;Thanks&lt;/P&gt;</description>
      <pubDate>Mon, 11 Mar 2024 06:26:26 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-write-measure-in-DAX-to-sum-value-for-two-particular/m-p/3754110#M146459</guid>
      <dc:creator>BhargavVM</dc:creator>
      <dc:date>2024-03-11T06:26:26Z</dc:date>
    </item>
    <item>
      <title>Re: How to write measure in DAX to sum value for two particular warehouse codes in the same column</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-write-measure-in-DAX-to-sum-value-for-two-particular/m-p/3754159#M146464</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="703332" data-lia-user-login="BhargavVM" class="lia-mention lia-mention-user"&gt;BhargavVM&lt;/a&gt;&amp;nbsp;,&amp;nbsp;&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;Please see below measure, it should work, the pbix file attached as well. please let me know whether it works or not&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;_total =&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;VAR&lt;/SPAN&gt; &lt;SPAN&gt;_sw_wh&lt;/SPAN&gt;&lt;SPAN&gt; = &lt;/SPAN&gt;&lt;SPAN&gt;FILTER&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;warehouse&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;/SPAN&gt;&lt;SPAN&gt;RIGHT&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;[warehouse_code]&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;"-SW"&lt;/SPAN&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;VAR&lt;/SPAN&gt; &lt;SPAN&gt;_temp_table&lt;/SPAN&gt;&lt;SPAN&gt; = &lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;ADDCOLUMNS&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;ADDCOLUMNS&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;_sw_wh&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;"p_wh"&lt;/SPAN&gt;&lt;SPAN&gt;, &lt;/SPAN&gt;&lt;SPAN&gt;LEFT&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;[warehouse_code]&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;/SPAN&gt;&lt;SPAN&gt;4&lt;/SPAN&gt;&lt;SPAN&gt;),&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;"p_stock"&lt;/SPAN&gt;&lt;SPAN&gt;, &lt;/SPAN&gt;&lt;SPAN&gt;LOOKUPVALUE&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;warehouse&lt;/SPAN&gt;&lt;SPAN&gt;[stock]&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;warehouse&lt;/SPAN&gt;&lt;SPAN&gt;[warehouse_code]&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;/SPAN&gt;&lt;SPAN&gt;LEFT&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;[warehouse_code]&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;/SPAN&gt;&lt;SPAN&gt;4&lt;/SPAN&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; )&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; ),&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;"Total"&lt;/SPAN&gt;&lt;SPAN&gt;, &lt;/SPAN&gt;&lt;SPAN&gt;[stock]&lt;/SPAN&gt;&lt;SPAN&gt;+&lt;/SPAN&gt;&lt;SPAN&gt;[p_stock]&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; )&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;VAR&lt;/SPAN&gt; &lt;SPAN&gt;_result&lt;/SPAN&gt;&lt;SPAN&gt; = &lt;/SPAN&gt;&lt;SPAN&gt;CALCULATE&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;SUMX&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;_temp_table&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;/SPAN&gt;&lt;SPAN&gt;[Total]&lt;/SPAN&gt;&lt;SPAN&gt;))&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;RETURN&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;_result&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;img /&gt;&lt;P&gt;&lt;A href="https://1drv.ms/u/s!AqoeLwPmopxmhOlE_MwhKAxeJ1AM-A?e=DpQ4nx" target="_blank" rel="noopener"&gt;20240311-file-1.pbix&lt;/A&gt;&lt;/P&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Mon, 11 Mar 2024 06:53:48 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-write-measure-in-DAX-to-sum-value-for-two-particular/m-p/3754159#M146464</guid>
      <dc:creator>Walter_W2022</dc:creator>
      <dc:date>2024-03-11T06:53:48Z</dc:date>
    </item>
    <item>
      <title>Re: How to write measure in DAX to sum value for two particular warehouse codes in the same column</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-write-measure-in-DAX-to-sum-value-for-two-particular/m-p/3754204#M146467</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="521828" data-lia-user-login="Walter_W2022" class="lia-mention lia-mention-user"&gt;Walter_W2022&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;In my table I have duplicates. It is giving me error in this line&lt;/P&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;"p_stock"&lt;/SPAN&gt;&lt;SPAN&gt;,&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;LOOKUPVALUE&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;warehouse&lt;/SPAN&gt;&lt;SPAN&gt;[stock]&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;warehouse&lt;/SPAN&gt;&lt;SPAN&gt;[warehouse_code]&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;/SPAN&gt;&lt;SPAN&gt;LEFT&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;[warehouse_code]&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;/SPAN&gt;&lt;SPAN&gt;4&lt;/SPAN&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;For one warehouse there are multiple rows. How can we aggregate this stock and lookup the value.&lt;/SPAN&gt;&lt;/DIV&gt;</description>
      <pubDate>Mon, 11 Mar 2024 07:10:37 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-write-measure-in-DAX-to-sum-value-for-two-particular/m-p/3754204#M146467</guid>
      <dc:creator>BhargavVM</dc:creator>
      <dc:date>2024-03-11T07:10:37Z</dc:date>
    </item>
    <item>
      <title>Re: How to write measure in DAX to sum value for two particular warehouse codes in the same column</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-write-measure-in-DAX-to-sum-value-for-two-particular/m-p/3754816#M146498</link>
      <description>&lt;P&gt;I am sorry&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="703332" data-lia-user-login="BhargavVM" class="lia-mention lia-mention-user"&gt;BhargavVM&lt;/a&gt;&amp;nbsp;, I could not figure out if there are duplicates and also cannot create virtual table. there are a lot of limitations&lt;/P&gt;</description>
      <pubDate>Mon, 11 Mar 2024 10:39:27 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-write-measure-in-DAX-to-sum-value-for-two-particular/m-p/3754816#M146498</guid>
      <dc:creator>Walter_W2022</dc:creator>
      <dc:date>2024-03-11T10:39:27Z</dc:date>
    </item>
    <item>
      <title>Re: How to write measure in DAX to sum value for two particular warehouse codes in the same column</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-write-measure-in-DAX-to-sum-value-for-two-particular/m-p/3754889#M146503</link>
      <description>Hi No worries Walter. Thanks for providing the solution. I will use as a starting point and try to figure out. Thanks for your help.</description>
      <pubDate>Mon, 11 Mar 2024 11:07:41 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-write-measure-in-DAX-to-sum-value-for-two-particular/m-p/3754889#M146503</guid>
      <dc:creator>BhargavVM</dc:creator>
      <dc:date>2024-03-11T11:07:41Z</dc:date>
    </item>
    <item>
      <title>Re: How to write measure in DAX to sum value for two particular warehouse codes in the same column</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-write-measure-in-DAX-to-sum-value-for-two-particular/m-p/3756540#M146562</link>
      <description>&lt;P&gt;No problem&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="703332" data-lia-user-login="BhargavVM" class="lia-mention lia-mention-user"&gt;BhargavVM&lt;/a&gt;&amp;nbsp;, it is my pleasure.&lt;/P&gt;</description>
      <pubDate>Tue, 12 Mar 2024 01:29:14 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-write-measure-in-DAX-to-sum-value-for-two-particular/m-p/3756540#M146562</guid>
      <dc:creator>Walter_W2022</dc:creator>
      <dc:date>2024-03-12T01:29:14Z</dc:date>
    </item>
  </channel>
</rss>

