<?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 Daily trend for Percentage of Sales in a line graph in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Daily-trend-for-Percentage-of-Sales-in-a-line-graph/m-p/3872874#M151285</link>
    <description>&lt;P&gt;I have a Datasaet that has daily sales data with category.&lt;/P&gt;&lt;P&gt;The Datatable sample&lt;/P&gt;&lt;P&gt;Date | Category | Sales Value&lt;BR /&gt;01-APR-24 | G1 | 100&lt;/P&gt;&lt;P&gt;01-APR-24 | G1 | 120&lt;/P&gt;&lt;P&gt;01-APR-24 | G2 | 150&lt;/P&gt;&lt;P&gt;01-APR-24 | G3 | 250&lt;/P&gt;&lt;P&gt;02-APR-24 | G1 | 120&lt;/P&gt;&lt;P&gt;02-APR-24 | G2 | 130&lt;/P&gt;&lt;P&gt;02-APR-24 | G3 | 150&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;The line graph should show daily percentage of sales by each category&lt;/P&gt;&lt;P&gt;Example&lt;/P&gt;&lt;P&gt;Date | Category | Sales Value&lt;BR /&gt;01-APR-24 | G1 | (220/620)&lt;/P&gt;&lt;P&gt;01-APR-24 | G2 | (150/620)&lt;/P&gt;&lt;P&gt;01-APR-24 | G3 | (250/620)&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;How should I design my DAX for this?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Sun, 28 Apr 2024 06:03:40 GMT</pubDate>
    <dc:creator>arafmustavi</dc:creator>
    <dc:date>2024-04-28T06:03:40Z</dc:date>
    <item>
      <title>Daily trend for Percentage of Sales in a line graph</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Daily-trend-for-Percentage-of-Sales-in-a-line-graph/m-p/3872874#M151285</link>
      <description>&lt;P&gt;I have a Datasaet that has daily sales data with category.&lt;/P&gt;&lt;P&gt;The Datatable sample&lt;/P&gt;&lt;P&gt;Date | Category | Sales Value&lt;BR /&gt;01-APR-24 | G1 | 100&lt;/P&gt;&lt;P&gt;01-APR-24 | G1 | 120&lt;/P&gt;&lt;P&gt;01-APR-24 | G2 | 150&lt;/P&gt;&lt;P&gt;01-APR-24 | G3 | 250&lt;/P&gt;&lt;P&gt;02-APR-24 | G1 | 120&lt;/P&gt;&lt;P&gt;02-APR-24 | G2 | 130&lt;/P&gt;&lt;P&gt;02-APR-24 | G3 | 150&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;The line graph should show daily percentage of sales by each category&lt;/P&gt;&lt;P&gt;Example&lt;/P&gt;&lt;P&gt;Date | Category | Sales Value&lt;BR /&gt;01-APR-24 | G1 | (220/620)&lt;/P&gt;&lt;P&gt;01-APR-24 | G2 | (150/620)&lt;/P&gt;&lt;P&gt;01-APR-24 | G3 | (250/620)&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;How should I design my DAX for this?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 28 Apr 2024 06:03:40 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Daily-trend-for-Percentage-of-Sales-in-a-line-graph/m-p/3872874#M151285</guid>
      <dc:creator>arafmustavi</dc:creator>
      <dc:date>2024-04-28T06:03:40Z</dc:date>
    </item>
    <item>
      <title>Re: Daily trend for Percentage of Sales in a line graph</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Daily-trend-for-Percentage-of-Sales-in-a-line-graph/m-p/3872890#M151286</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="400299" data-lia-user-login="arafmustavi" class="lia-mention lia-mention-user"&gt;arafmustavi&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;% Of Total Sales = 
DIVIDE ( 
    SUM ( 'Table'[Sales Value] ),
    CALCULATE ( 
        SUM ( 'Table'[Sales Value] ),
        REMOVEFILTERS ( 'Table' )
    )
)&lt;/LI-CODE&gt;</description>
      <pubDate>Sun, 28 Apr 2024 06:41:50 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Daily-trend-for-Percentage-of-Sales-in-a-line-graph/m-p/3872890#M151286</guid>
      <dc:creator>AntrikshSharma</dc:creator>
      <dc:date>2024-04-28T06:41:50Z</dc:date>
    </item>
  </channel>
</rss>

