<?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 Need to create a visual that displays data from the current day and the from three historical days in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Need-to-create-a-visual-that-displays-data-from-the-current-day/m-p/1431302#M26693</link>
    <description>&lt;P&gt;Help,&lt;/P&gt;&lt;P&gt;I am trying to display Contact Center data on a visual, preferably a bar graph of clustered bar graph. The fields contain DateTime and CallsHandled. What I would like to display is the data for Today's Date and times (interval) and then the historical data from the previous 3 days with the same DOW. For example, display Today's datetimes of 10/13/2020 07:00:00 AM... 10/13/2020 06:00:00 PM,&amp;nbsp;10/6/2020 07:00:00 AM... 10/6/2020 06:00:00 PM,&amp;nbsp;09/29/2020 07:00:00 AM... 09/29/2020 06:00:00 PM and&amp;nbsp;09/22/2020 07:00:00 AM... 09/22/2020 06:00:00 PM.&lt;/P&gt;&lt;P&gt;The data is in one table and contains 6 months of historical data.&lt;/P&gt;&lt;P&gt;Any help with this would be greatly appreciated.&lt;/P&gt;&lt;P&gt;Mark&lt;/P&gt;</description>
    <pubDate>Tue, 13 Oct 2020 21:07:04 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2020-10-13T21:07:04Z</dc:date>
    <item>
      <title>Need to create a visual that displays data from the current day and the from three historical days</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Need-to-create-a-visual-that-displays-data-from-the-current-day/m-p/1431302#M26693</link>
      <description>&lt;P&gt;Help,&lt;/P&gt;&lt;P&gt;I am trying to display Contact Center data on a visual, preferably a bar graph of clustered bar graph. The fields contain DateTime and CallsHandled. What I would like to display is the data for Today's Date and times (interval) and then the historical data from the previous 3 days with the same DOW. For example, display Today's datetimes of 10/13/2020 07:00:00 AM... 10/13/2020 06:00:00 PM,&amp;nbsp;10/6/2020 07:00:00 AM... 10/6/2020 06:00:00 PM,&amp;nbsp;09/29/2020 07:00:00 AM... 09/29/2020 06:00:00 PM and&amp;nbsp;09/22/2020 07:00:00 AM... 09/22/2020 06:00:00 PM.&lt;/P&gt;&lt;P&gt;The data is in one table and contains 6 months of historical data.&lt;/P&gt;&lt;P&gt;Any help with this would be greatly appreciated.&lt;/P&gt;&lt;P&gt;Mark&lt;/P&gt;</description>
      <pubDate>Tue, 13 Oct 2020 21:07:04 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Need-to-create-a-visual-that-displays-data-from-the-current-day/m-p/1431302#M26693</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-10-13T21:07:04Z</dc:date>
    </item>
    <item>
      <title>Re: Need to create a visual that displays data from the current day and the from three historical days</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Need-to-create-a-visual-that-displays-data-from-the-current-day/m-p/1431900#M26700</link>
      <description>&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;LI-CODE lang="cpp"&gt;TTL_Display =
VAR _CurrenctDate =
    TODAY ()
VAR _CurrenctWeekDay =
    WEEKDAY ( _CurrenctDate )
VAR DaysSelected =
    TOPN (
        3,
        FILTER (
            ALL ( ContactData[Date] ),
            WEEKDAY ( ContactData[Date] ) = _CurrenctWeekDay
                &amp;amp;&amp;amp; ContactData[Date] &amp;lt;= _CurrenctDate
        ),
        ContactData[Date]
    )
RETURN
    CALCULATE ( [TTL], KEEPFILTERS ( ContactData[Date] IN DaysSelected ) )&lt;/LI-CODE&gt;&lt;P&gt;hope this can help you!!&lt;/P&gt;</description>
      <pubDate>Wed, 14 Oct 2020 03:39:53 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Need-to-create-a-visual-that-displays-data-from-the-current-day/m-p/1431900#M26700</guid>
      <dc:creator>wdx223_Daniel</dc:creator>
      <dc:date>2020-10-14T03:39:53Z</dc:date>
    </item>
    <item>
      <title>Re: Need to create a visual that displays data from the current day and the from three historical days</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Need-to-create-a-visual-that-displays-data-from-the-current-day/m-p/1436005#M26826</link>
      <description>&lt;P&gt;Thanks for your response...&lt;/P&gt;&lt;P&gt;I am taking a look at the measure you sent and have a newbe question. What is TTL in the calculate?&lt;/P&gt;&lt;P&gt;I set it up to use my data and ran into this question.&lt;/P&gt;&lt;P&gt;Thanks... Mark&lt;/P&gt;</description>
      <pubDate>Thu, 15 Oct 2020 12:35:43 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Need-to-create-a-visual-that-displays-data-from-the-current-day/m-p/1436005#M26826</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-10-15T12:35:43Z</dc:date>
    </item>
    <item>
      <title>Re: Need to create a visual that displays data from the current day and the from three historical days</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Need-to-create-a-visual-that-displays-data-from-the-current-day/m-p/1437031#M26859</link>
      <description>&lt;P&gt;the code of TTL measure is =SUM(ContactData[&lt;SPAN&gt;CallsHandled])&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 16 Oct 2020 00:24:53 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Need-to-create-a-visual-that-displays-data-from-the-current-day/m-p/1437031#M26859</guid>
      <dc:creator>wdx223_Daniel</dc:creator>
      <dc:date>2020-10-16T00:24:53Z</dc:date>
    </item>
  </channel>
</rss>

