<?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 Compare Actual Result with Target and Last Year result in a visual in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Compare-Actual-Result-with-Target-and-Last-Year-result-in-a/m-p/1435882#M26821</link>
    <description>&lt;P&gt;Hi guys,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am having difficulties in creating a visual that compares Actual Result with Last Year result and Target.&lt;/P&gt;&lt;P&gt;In the visual below i want to add a 3rd line that will show the target value:&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Actual Result is calculated measure from a table with data at Day Level, that looks like this&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;and I have a separate table for Targets at Month Level with no relation between them:&lt;/P&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;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Can you please help with a solution?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Thu, 15 Oct 2020 11:29:50 GMT</pubDate>
    <dc:creator>SilviuIL</dc:creator>
    <dc:date>2020-10-15T11:29:50Z</dc:date>
    <item>
      <title>Compare Actual Result with Target and Last Year result in a visual</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Compare-Actual-Result-with-Target-and-Last-Year-result-in-a/m-p/1435882#M26821</link>
      <description>&lt;P&gt;Hi guys,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am having difficulties in creating a visual that compares Actual Result with Last Year result and Target.&lt;/P&gt;&lt;P&gt;In the visual below i want to add a 3rd line that will show the target value:&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Actual Result is calculated measure from a table with data at Day Level, that looks like this&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;and I have a separate table for Targets at Month Level with no relation between them:&lt;/P&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;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Can you please help with a solution?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 15 Oct 2020 11:29:50 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Compare-Actual-Result-with-Target-and-Last-Year-result-in-a/m-p/1435882#M26821</guid>
      <dc:creator>SilviuIL</dc:creator>
      <dc:date>2020-10-15T11:29:50Z</dc:date>
    </item>
    <item>
      <title>Re: Compare Actual Result with Target and Last Year result in a visual</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Compare-Actual-Result-with-Target-and-Last-Year-result-in-a/m-p/1435995#M26825</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="223231" data-lia-user-login="SilviuIL" class="lia-mention lia-mention-user"&gt;SilviuIL&lt;/a&gt; , Create a date in the target table&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Date = date([year], [month],1)&lt;/P&gt;
&lt;P&gt;or&lt;/P&gt;
&lt;P&gt;Date = eomonth(date([year], [month],1),-1)&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Join your actual and target with a date table and use that to plot time/date&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT size="2"&gt;To get the best of the time intelligence function. Make sure you have a date calendar and it has been marked as the date in model view. Also, join it with the date column of your fact/s. Refer :&lt;A href="https://radacad.com/creating-calendar-table-in-power-bi-using-dax-functions" target="_blank"&gt;radacad&lt;/A&gt; &lt;A href="https://www.sqlbi.com/articles/creating-a-simple-date-table-in-dax/" target="_blank"&gt;sqlbi&lt;/A&gt; &lt;A href="https://www.youtube.com/playlist?list=PLPaNVDMhUXGYLz-w8ERQOo3KYARs7GgG-" target="_blank"&gt;My Video Series&lt;/A&gt; Appreciate your Kudos. &lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT size="2"&gt;&lt;FONT size="1"&gt; Please provide your feedback comments and advice for new videos &lt;BR /&gt;&lt;A href="https://www.youtube.com/watch?v=wvsAzTqSDVg&amp;amp;list=PLPaNVDMhUXGaaqV92SBD5X2hk3TMNlHhb" target="_blank"&gt;Tutorial Series&lt;/A&gt; &lt;A href="https://www.youtube.com/watch?v=WlvQ_SGy4iA&amp;amp;list=PLPaNVDMhUXGZNyKU0PgG2g3P0c6CPjMnj" target="_blank"&gt;Dax Vs SQL&lt;/A&gt; &lt;A href="https://www.youtube.com/watch?v=My0bLn9voo4&amp;amp;list=PLPaNVDMhUXGbKatyDdOhGbTL3xW2Xy6pA" target="_blank"&gt;Direct Query&lt;/A&gt; &lt;A href="https://www.youtube.com/watch?v=YWo-ZpKM6gU&amp;amp;list=PLPaNVDMhUXGYrm5rm6ME6rjzKGSvT9Jmy" target="_blank"&gt;PBI Tips&lt;/A&gt; &lt;BR /&gt;Appreciate your Kudos.&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 15 Oct 2020 12:31:51 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Compare-Actual-Result-with-Target-and-Last-Year-result-in-a/m-p/1435995#M26825</guid>
      <dc:creator>amitchandak</dc:creator>
      <dc:date>2020-10-15T12:31:51Z</dc:date>
    </item>
  </channel>
</rss>

