<?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: Line chart latest month days in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Line-chart-latest-month-days/m-p/3147044#M112604</link>
    <description>&lt;P&gt;Yes, I'm using the date dimention and added additional columns. Unfortunetly the latest month is still showing the line until the end of the month. Possibly need to add day and month.&lt;/P&gt;</description>
    <pubDate>Wed, 22 Mar 2023 11:42:32 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2023-03-22T11:42:32Z</dc:date>
    <item>
      <title>Line chart latest month days</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Line-chart-latest-month-days/m-p/3145212#M112489</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I created a line chart to show the balance movement on a daily basis, comparing few months trends.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;For some dates the data is missing, so I added the formular to add zero and used a day in the chart from the manually created calendar table. The problem I have is I only have the data up to the 15th of March and the calendar dates are up to 15th of March, but on the line chart I have a can see the line until 31st of March.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;How can I stop the March line at the 15th?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Below is the dax formular for total balance and charts&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Total Balance = &lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;var&lt;/SPAN&gt; &lt;SPAN&gt;_TotalBalance&lt;/SPAN&gt;&lt;SPAN&gt; = &lt;/SPAN&gt;&lt;SPAN&gt;sum&lt;/SPAN&gt;&lt;SPAN&gt;(Q1&lt;/SPAN&gt;&lt;SPAN&gt;[Sum_Balance]&lt;/SPAN&gt;&lt;SPAN&gt;) + &lt;/SPAN&gt;&lt;SPAN&gt;0&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Return&lt;/SPAN&gt; &lt;SPAN&gt;_TotalBalance&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;</description>
      <pubDate>Tue, 21 Mar 2023 16:18:10 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Line-chart-latest-month-days/m-p/3145212#M112489</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2023-03-21T16:18:10Z</dc:date>
    </item>
    <item>
      <title>Re: Line chart latest month days</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Line-chart-latest-month-days/m-p/3145366#M112496</link>
      <description>&lt;P&gt;Try removing 0 from measure.&lt;/P&gt;</description>
      <pubDate>Tue, 21 Mar 2023 17:16:47 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Line-chart-latest-month-days/m-p/3145366#M112496</guid>
      <dc:creator>rautaniket0077</dc:creator>
      <dc:date>2023-03-21T17:16:47Z</dc:date>
    </item>
    <item>
      <title>Re: Line chart latest month days</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Line-chart-latest-month-days/m-p/3145516#M112519</link>
      <description>&lt;P&gt;Are you using a Date Dimension?&amp;nbsp; If so, have a column for the Day Number, for example..&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;DayNum = DAY([Date])&lt;/LI-CODE&gt;&lt;P&gt;Then create a another column that you can filter (could use a measure as well)&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;Is Day Num before Today = IF(DayNum &amp;lt;= DAY(TODAY()), "Yes","No")&lt;/LI-CODE&gt;&lt;P&gt;On your chart add the "Is Day Num before Today" and then select "Yes".&lt;/P&gt;</description>
      <pubDate>Tue, 21 Mar 2023 18:29:49 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Line-chart-latest-month-days/m-p/3145516#M112519</guid>
      <dc:creator>BrianConnelly</dc:creator>
      <dc:date>2023-03-21T18:29:49Z</dc:date>
    </item>
    <item>
      <title>Re: Line chart latest month days</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Line-chart-latest-month-days/m-p/3147040#M112603</link>
      <description>&lt;P&gt;Without 0 the chart stops at day 30, but I want to show the dip on the last day&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 22 Mar 2023 11:40:54 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Line-chart-latest-month-days/m-p/3147040#M112603</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2023-03-22T11:40:54Z</dc:date>
    </item>
    <item>
      <title>Re: Line chart latest month days</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Line-chart-latest-month-days/m-p/3147044#M112604</link>
      <description>&lt;P&gt;Yes, I'm using the date dimention and added additional columns. Unfortunetly the latest month is still showing the line until the end of the month. Possibly need to add day and month.&lt;/P&gt;</description>
      <pubDate>Wed, 22 Mar 2023 11:42:32 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Line-chart-latest-month-days/m-p/3147044#M112604</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2023-03-22T11:42:32Z</dc:date>
    </item>
    <item>
      <title>Re: Line chart latest month days</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Line-chart-latest-month-days/m-p/3147632#M112666</link>
      <description>&lt;P&gt;Can you share some screenshots so I can see what is happening?&lt;/P&gt;</description>
      <pubDate>Wed, 22 Mar 2023 15:37:20 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Line-chart-latest-month-days/m-p/3147632#M112666</guid>
      <dc:creator>BrianConnelly</dc:creator>
      <dc:date>2023-03-22T15:37:20Z</dc:date>
    </item>
    <item>
      <title>Re: Line chart latest month days</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Line-chart-latest-month-days/m-p/3147782#M112676</link>
      <description>&lt;P&gt;Hi.&lt;/P&gt;&lt;P&gt;I don't have the data for the last day of the month, that is why in the measure I add 0 to the sum of balance. Then link the date to the calendar table and use the calendar date in X axis.&lt;/P&gt;&lt;P&gt;Without adding a zero the chart look like this, so the end of the month 31st or 30thth&amp;nbsp; is missing.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;With the zero it looks like I want, but the latest month has future days populated.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;With the new day formulars the chart breaks at just over mid month&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&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;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 22 Mar 2023 16:29:59 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Line-chart-latest-month-days/m-p/3147782#M112676</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2023-03-22T16:29:59Z</dc:date>
    </item>
  </channel>
</rss>

