<?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: Date Measure - graph with multiple years and % for each year in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Date-Measure-graph-with-multiple-years-and-for-each-year/m-p/3128960#M111251</link>
    <description>&lt;P&gt;Do I need to create a Measure first? or where it says Measure, would I put the field in there?&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Mon, 13 Mar 2023 18:47:30 GMT</pubDate>
    <dc:creator>tvathis</dc:creator>
    <dc:date>2023-03-13T18:47:30Z</dc:date>
    <item>
      <title>Date Measure - graph with multiple years and % for each year</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Date-Measure-graph-with-multiple-years-and-for-each-year/m-p/3124976#M110963</link>
      <description>&lt;P&gt;Hi!&lt;/P&gt;&lt;P&gt;I'm trying to create a clustered column chart that can show the % of each year, not the % of all years combined.&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I currently have the 3 years seperated.&lt;/P&gt;&lt;P&gt;I can add a filter to show each year seperately, but when I put all 3 years in the same graph it changes the % values.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I do not have any measures set up at this time.&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Here is my current graphs.&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'm very new to Power BI and am not sure how to get it to calculate.&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Any help would be greatly appreciated.&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank&amp;nbsp; you!&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 10 Mar 2023 19:37:19 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Date-Measure-graph-with-multiple-years-and-for-each-year/m-p/3124976#M110963</guid>
      <dc:creator>tvathis</dc:creator>
      <dc:date>2023-03-10T19:37:19Z</dc:date>
    </item>
    <item>
      <title>Re: Date Measure - graph with multiple years and % for each year</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Date-Measure-graph-with-multiple-years-and-for-each-year/m-p/3125207#M110985</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="450813" data-lia-user-login="tvathis" class="lia-mention lia-mention-user"&gt;tvathis&lt;/a&gt; , try a measure like &lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;divide([Measure], calculate([Measure], filter(allselected(Date) , Date[Year] = Max(Date[Year]) ) ) )&lt;/P&gt;</description>
      <pubDate>Sat, 11 Mar 2023 01:18:30 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Date-Measure-graph-with-multiple-years-and-for-each-year/m-p/3125207#M110985</guid>
      <dc:creator>amitchandak</dc:creator>
      <dc:date>2023-03-11T01:18:30Z</dc:date>
    </item>
    <item>
      <title>Re: Date Measure - graph with multiple years and % for each year</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Date-Measure-graph-with-multiple-years-and-for-each-year/m-p/3128960#M111251</link>
      <description>&lt;P&gt;Do I need to create a Measure first? or where it says Measure, would I put the field in there?&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 13 Mar 2023 18:47:30 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Date-Measure-graph-with-multiple-years-and-for-each-year/m-p/3128960#M111251</guid>
      <dc:creator>tvathis</dc:creator>
      <dc:date>2023-03-13T18:47:30Z</dc:date>
    </item>
    <item>
      <title>Re: Date Measure - graph with multiple years and % for each year</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Date-Measure-graph-with-multiple-years-and-for-each-year/m-p/3129054#M111258</link>
      <description>&lt;P&gt;It can be a measure or an aggregation where he has [Measure].&amp;nbsp; But do yourself a favor, look at the introduction free training here...&lt;A href="https://www.sqlbi.com/p/introducing-dax-video-course/" target="_blank"&gt;Introducing DAX Video Course - SQLBI&lt;/A&gt;.&amp;nbsp; This will really help you get up to speed.&lt;/P&gt;</description>
      <pubDate>Mon, 13 Mar 2023 19:30:18 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Date-Measure-graph-with-multiple-years-and-for-each-year/m-p/3129054#M111258</guid>
      <dc:creator>BrianConnelly</dc:creator>
      <dc:date>2023-03-13T19:30:18Z</dc:date>
    </item>
    <item>
      <title>Re: Date Measure - graph with multiple years and % for each year</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Date-Measure-graph-with-multiple-years-and-for-each-year/m-p/3131272#M111431</link>
      <description>&lt;P&gt;Thank you so much!&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 14 Mar 2023 15:59:14 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Date-Measure-graph-with-multiple-years-and-for-each-year/m-p/3131272#M111431</guid>
      <dc:creator>tvathis</dc:creator>
      <dc:date>2023-03-14T15:59:14Z</dc:date>
    </item>
  </channel>
</rss>

