<?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 Looking for Table in DAX in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Looking-for-Table-in-DAX/m-p/3502897#M134344</link>
    <description>&lt;P&gt;&lt;A title="Create Table in DAX -Remaining Inventory and &amp;quot;Finalized Orders" href="https://drive.google.com/file/d/1VQurjakljRyT1x9bBtHzFF_UjsDw3xbY/view?usp=drive_link" target="_self"&gt;Remaining Inventory after Finalized orders Subtracted&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Hello Community:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have created a table using some basic measures, see attached. I am looking for suggestions on how to write DAX as a table function for my main visual. Inventory is stored in multiple locations and orders in this case are subtracted from inventory if they are noted as finalized.&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;I have the main visual which I'm looking to produce as a DAX table function.&lt;BR /&gt;&lt;BR /&gt;Thank you!&lt;/P&gt;</description>
    <pubDate>Sat, 28 Oct 2023 23:40:21 GMT</pubDate>
    <dc:creator>Whitewater100</dc:creator>
    <dc:date>2023-10-28T23:40:21Z</dc:date>
    <item>
      <title>Looking for Table in DAX</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Looking-for-Table-in-DAX/m-p/3502897#M134344</link>
      <description>&lt;P&gt;&lt;A title="Create Table in DAX -Remaining Inventory and &amp;quot;Finalized Orders" href="https://drive.google.com/file/d/1VQurjakljRyT1x9bBtHzFF_UjsDw3xbY/view?usp=drive_link" target="_self"&gt;Remaining Inventory after Finalized orders Subtracted&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Hello Community:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have created a table using some basic measures, see attached. I am looking for suggestions on how to write DAX as a table function for my main visual. Inventory is stored in multiple locations and orders in this case are subtracted from inventory if they are noted as finalized.&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;I have the main visual which I'm looking to produce as a DAX table function.&lt;BR /&gt;&lt;BR /&gt;Thank you!&lt;/P&gt;</description>
      <pubDate>Sat, 28 Oct 2023 23:40:21 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Looking-for-Table-in-DAX/m-p/3502897#M134344</guid>
      <dc:creator>Whitewater100</dc:creator>
      <dc:date>2023-10-28T23:40:21Z</dc:date>
    </item>
    <item>
      <title>Re: Looking for Table in DAX</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Looking-for-Table-in-DAX/m-p/3503149#M134353</link>
      <description>&lt;P&gt;Please find link to report. Sorry it was not shared correctly the first time!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;A title="PBIX for DAX Table Request" href="https://drive.google.com/file/d/1VQurjakljRyT1x9bBtHzFF_UjsDw3xbY/view?usp=sharing" target="_self"&gt;https://drive.google.com/file/d/1VQurjakljRyT1x9bBtHzFF_UjsDw3xbY/view?usp=sharing&lt;/A&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 29 Oct 2023 13:10:59 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Looking-for-Table-in-DAX/m-p/3503149#M134353</guid>
      <dc:creator>Whitewater100</dc:creator>
      <dc:date>2023-10-29T13:10:59Z</dc:date>
    </item>
    <item>
      <title>Re: Looking for Table in DAX</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Looking-for-Table-in-DAX/m-p/3503365#M134370</link>
      <description>&lt;P&gt;Hi,&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="179903" data-lia-user-login="Whitewater100" class="lia-mention lia-mention-user"&gt;Whitewater100&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;new Table = 
SUMMARIZECOLUMNS(Products[Product],WH_Loc[WH_Area],WH_Name[WH Name],
                 "total wh qty",SUM(WH_Inv[WH_Qty]),
                 "finalized order qty", CALCULATE(SUM(Orders[Order Qty]),Orders[Order Status]="finalized"),
                 "balance of INV(oh-final oq)",SUM(WH_Inv[WH_Qty])-CALCULATE(SUM(Orders[Order Qty]),Orders[Order Status]="finalized")
                 )&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 29 Oct 2023 19:09:09 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Looking-for-Table-in-DAX/m-p/3503365#M134370</guid>
      <dc:creator>Dangar332</dc:creator>
      <dc:date>2023-10-29T19:09:09Z</dc:date>
    </item>
    <item>
      <title>Re: Looking for Table in DAX</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Looking-for-Table-in-DAX/m-p/3503464#M134375</link>
      <description>&lt;P&gt;Thanks very much! Nice job:-)&lt;/P&gt;</description>
      <pubDate>Sun, 29 Oct 2023 22:45:05 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Looking-for-Table-in-DAX/m-p/3503464#M134375</guid>
      <dc:creator>Whitewater100</dc:creator>
      <dc:date>2023-10-29T22:45:05Z</dc:date>
    </item>
  </channel>
</rss>

