<?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: Show whole year in line graph while slicing on Month in a Year/Month Slicer in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Show-whole-year-in-line-graph-while-slicing-on-Month-in-a-Year/m-p/3051246#M105100</link>
    <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="447085" data-lia-user-login="jaweher899" class="lia-mention lia-mention-user"&gt;jaweher899&lt;/a&gt;&amp;nbsp;thank you for your quick reply.&lt;BR /&gt;&lt;BR /&gt;How do you go about creating the filter? That part, honestly I did not understand. If I use Month Column and Year Column in one slicer in the report canvas, there is no way that the SUM of Sales = SUM(Sales [SalesAmount]) shows the selected month and the whole FY based on the month selection.&lt;BR /&gt;Here is what I get:&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I can only achive that when I create two separate filters, one month and the other year, and disable the interaction of the month filter with my line graph. In that way I can filter my line graph with the year filter and al other visuals with the month filter and year filter simultaniously.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
    <pubDate>Mon, 30 Jan 2023 22:00:04 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2023-01-30T22:00:04Z</dc:date>
    <item>
      <title>Show whole year in line graph while slicing on Month in a Year/Month Slicer</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Show-whole-year-in-line-graph-while-slicing-on-Month-in-a-Year/m-p/3050955#M105079</link>
      <description>&lt;P&gt;Hi members,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have a line graph which is supposed to show Net Order Value development over the whole year, even when in my Year/Month Slicer only one Month is selected from a specific year.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;E.g. Select Jan &amp;amp; Feb from 2021 =&amp;gt; only 2021 Net Order Value Data (the whole year) should be displayed in the Line Graph.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The Year/Month slicer contains a Year column and&amp;nbsp; Month (Jan, Feb ...) column.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Is there a way to create a Dax Measure which can calculate Net Order Value&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Net Order Value = &lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;SUMX&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;'Order'&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;/SPAN&gt;&lt;SPAN&gt;'Order'&lt;/SPAN&gt;&lt;SPAN&gt;[Order Value]&lt;/SPAN&gt;&lt;SPAN&gt;-&lt;/SPAN&gt;&lt;SPAN&gt;'Order'&lt;/SPAN&gt;&lt;SPAN&gt;[Credit Note Value]&lt;/SPAN&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;so that it calculates the value for the whole year based on the month selection in the Year/Month slicer?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Mirza&lt;/P&gt;</description>
      <pubDate>Mon, 30 Jan 2023 17:04:44 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Show-whole-year-in-line-graph-while-slicing-on-Month-in-a-Year/m-p/3050955#M105079</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2023-01-30T17:04:44Z</dc:date>
    </item>
    <item>
      <title>Re: Show whole year in line graph while slicing on Month in a Year/Month Slicer</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Show-whole-year-in-line-graph-while-slicing-on-Month-in-a-Year/m-p/3051023#M105089</link>
      <description>&lt;P&gt;To achieve this, the user can create a measure that calculates the sum of a certain column for a selected month and year, and use this measure in the line graph. Additionally, the user can create a filter that allows them to select a specific month and year to slice on.&lt;/P&gt;&lt;P&gt;Here's how:&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;Create a measure: In the Fields Pane, select the column that you want to sum for a selected month and year, and create a measure using the SUM function. For example:&lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;SUM of Sales = SUM(Sales[SalesAmount])&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;&lt;P&gt;Create a filter: In the Fields Pane, select the date column, and add a filter to the report canvas. In the filter, select the desired month and year to slice on.&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;Use the measure in the line graph: In the Fields Pane, select the measure created in step 1, and add a line graph to the report canvas. In the line graph, use the date column as the X-axis, and the measure as the Y-axis.&lt;/P&gt;&lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;By using this approach, the line graph will show the sum of the selected column for a selected month and year, allowing the user to view the data for a specific time frame while still seeing the overall trend for the whole year.&lt;/P&gt;</description>
      <pubDate>Mon, 30 Jan 2023 17:59:46 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Show-whole-year-in-line-graph-while-slicing-on-Month-in-a-Year/m-p/3051023#M105089</guid>
      <dc:creator>jaweher899</dc:creator>
      <dc:date>2023-01-30T17:59:46Z</dc:date>
    </item>
    <item>
      <title>Re: Show whole year in line graph while slicing on Month in a Year/Month Slicer</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Show-whole-year-in-line-graph-while-slicing-on-Month-in-a-Year/m-p/3051246#M105100</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="447085" data-lia-user-login="jaweher899" class="lia-mention lia-mention-user"&gt;jaweher899&lt;/a&gt;&amp;nbsp;thank you for your quick reply.&lt;BR /&gt;&lt;BR /&gt;How do you go about creating the filter? That part, honestly I did not understand. If I use Month Column and Year Column in one slicer in the report canvas, there is no way that the SUM of Sales = SUM(Sales [SalesAmount]) shows the selected month and the whole FY based on the month selection.&lt;BR /&gt;Here is what I get:&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I can only achive that when I create two separate filters, one month and the other year, and disable the interaction of the month filter with my line graph. In that way I can filter my line graph with the year filter and al other visuals with the month filter and year filter simultaniously.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 30 Jan 2023 22:00:04 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Show-whole-year-in-line-graph-while-slicing-on-Month-in-a-Year/m-p/3051246#M105100</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2023-01-30T22:00:04Z</dc:date>
    </item>
  </channel>
</rss>

