<?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: Visual returning the same data for every date when using CALENDARAUTO() in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Visual-returning-the-same-data-for-every-date-when-using/m-p/2904872#M94735</link>
    <description>&lt;P&gt;what do you expect?&lt;/P&gt;</description>
    <pubDate>Mon, 14 Nov 2022 23:07:04 GMT</pubDate>
    <dc:creator>FreemanZ</dc:creator>
    <dc:date>2022-11-14T23:07:04Z</dc:date>
    <item>
      <title>Visual returning the same data for every date when using CALENDARAUTO()</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Visual-returning-the-same-data-for-every-date-when-using/m-p/2904623#M94725</link>
      <description>&lt;P&gt;I am counting rows from "tblA" under two different conditions using these measures:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;Cnt of A = COUNTROWS(Filter(tblA, tblA[Column Name] = "A"))&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Cnt of B&amp;nbsp; = COUNTROWS(Filter(tblA, tblA[Column Name] = "B"))&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Dropping these into a clustered column and when I use the Date from "tblA" I get the correct occurrences for both in each month but I am learning that because the dates in "tblA" are not continuous it prohibits me from using a trendline. When I drop my CALENDARAUTO() calendar into the X-axis it gives me the same values in every month.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;My "Date" from my Calendar Table where the CALENDARAUTO() column is has a one to many relationship with my date column in "tblA" and the cross filtering is set to both.&amp;nbsp; &amp;nbsp;Any help or guidance would be greatly appreciated!&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 14 Nov 2022 20:00:29 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Visual-returning-the-same-data-for-every-date-when-using/m-p/2904623#M94725</guid>
      <dc:creator>OhLookAnError</dc:creator>
      <dc:date>2022-11-14T20:00:29Z</dc:date>
    </item>
    <item>
      <title>Re: Visual returning the same data for every date when using CALENDARAUTO()</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Visual-returning-the-same-data-for-every-date-when-using/m-p/2904872#M94735</link>
      <description>&lt;P&gt;what do you expect?&lt;/P&gt;</description>
      <pubDate>Mon, 14 Nov 2022 23:07:04 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Visual-returning-the-same-data-for-every-date-when-using/m-p/2904872#M94735</guid>
      <dc:creator>FreemanZ</dc:creator>
      <dc:date>2022-11-14T23:07:04Z</dc:date>
    </item>
    <item>
      <title>Re: Visual returning the same data for every date when using CALENDARAUTO()</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Visual-returning-the-same-data-for-every-date-when-using/m-p/2904960#M94743</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="460868" data-lia-user-login="FreemanZ" class="lia-mention lia-mention-user"&gt;FreemanZ&lt;/a&gt;&amp;nbsp;I Have a continuous calendar table and I have a calendar generated by the random dates of "tblA". When I use the dates out of tblA I get the correct data in each month but when I use the calendar table I get what might be a sum of all the data in each month. normally I wouldnt care and would just use the calendar out of tblA but I need a trendline and my understanding is that since that is not a continuous calendar, it won't give me the option for a trendline.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 15 Nov 2022 00:31:22 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Visual-returning-the-same-data-for-every-date-when-using/m-p/2904960#M94743</guid>
      <dc:creator>OhLookAnError</dc:creator>
      <dc:date>2022-11-15T00:31:22Z</dc:date>
    </item>
    <item>
      <title>Re: Visual returning the same data for every date when using CALENDARAUTO()</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Visual-returning-the-same-data-for-every-date-when-using/m-p/2905760#M94798</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="471693" data-lia-user-login="OhLookAnError" class="lia-mention lia-mention-user"&gt;OhLookAnError&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;As far as I know, trendline should work in cluster column which contains continuous date.&lt;/P&gt;
&lt;P&gt;Below is my sample table which doesn't have continuous date like 'tblA'.&lt;/P&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;According to your statement, I think you may use date hierarchy in your visual. Then trendline will not work in analysis pane. Here I suggest you to add [Date] column whether from "Calendar" or "tblA" into X axis field and select X axis type as Continuous.&lt;/P&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;For reference:&amp;nbsp;&lt;A href="https://learn.microsoft.com/en-us/power-bi/transform-model/desktop-analytics-pane" target="_self"&gt;Use the Analytics pane in Power BI Desktop&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Best Regards,&lt;BR /&gt;Rico Zhou&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 15 Nov 2022 08:25:30 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Visual-returning-the-same-data-for-every-date-when-using/m-p/2905760#M94798</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2022-11-15T08:25:30Z</dc:date>
    </item>
    <item>
      <title>Re: Visual returning the same data for every date when using CALENDARAUTO()</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Visual-returning-the-same-data-for-every-date-when-using/m-p/2906677#M94853</link>
      <description>&lt;P&gt;Thank you!&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 15 Nov 2022 13:44:04 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Visual-returning-the-same-data-for-every-date-when-using/m-p/2906677#M94853</guid>
      <dc:creator>OhLookAnError</dc:creator>
      <dc:date>2022-11-15T13:44:04Z</dc:date>
    </item>
  </channel>
</rss>

