<?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: Issue with Multiple date keys and displaying dates on report. in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Issue-with-Multiple-date-keys-and-displaying-dates-on-report/m-p/4089873#M162328</link>
    <description>&lt;P&gt;Does it have to be SSAS Tabular or could it instead be implemented as a Power BI Semantic Model?&lt;/P&gt;</description>
    <pubDate>Thu, 08 Aug 2024 18:01:00 GMT</pubDate>
    <dc:creator>lbendlin</dc:creator>
    <dc:date>2024-08-08T18:01:00Z</dc:date>
    <item>
      <title>Issue with Multiple date keys and displaying dates on report.</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Issue-with-Multiple-date-keys-and-displaying-dates-on-report/m-p/4083966#M162096</link>
      <description>&lt;P&gt;Hello, i am working on a SSAS Tabular model to support Power BI report development.&amp;nbsp;&lt;SPAN&gt;Our main fact table has multiple dates (Order Date, Paid Date, Shipped Date) with the Order Date being the active relationship to the date dimension. One of our reports requires a table that has the following columns (amoung others) Date and Amount by Paid Date. I understand how to build the measure "Amount by Paid Date" using USERELATIONSHIP to active the relationship between my fact.paid_date_key and the dim.date_key.&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Other than fully duplicating my date dimension to have a "Paid Date Dimension" and use that inactive relationship. how can i include "Paid Date" in my report table?&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 06 Aug 2024 11:03:18 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Issue-with-Multiple-date-keys-and-displaying-dates-on-report/m-p/4083966#M162096</guid>
      <dc:creator>Cosmac</dc:creator>
      <dc:date>2024-08-06T11:03:18Z</dc:date>
    </item>
    <item>
      <title>Re: Issue with Multiple date keys and displaying dates on report.</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Issue-with-Multiple-date-keys-and-displaying-dates-on-report/m-p/4085149#M162139</link>
      <description>&lt;LI-CODE lang="markup"&gt;Other than fully duplicating my date dimension to have a "Paid Date Dimension" and use that inactive relationship. how can i include "Paid Date" in my report table?&lt;/LI-CODE&gt;
&lt;P&gt;You lost me on that part.&amp;nbsp; Do you need to model the entirety of the relationships in your cube or can you allow the report users to create their own connections?&lt;/P&gt;</description>
      <pubDate>Tue, 06 Aug 2024 21:01:36 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Issue-with-Multiple-date-keys-and-displaying-dates-on-report/m-p/4085149#M162139</guid>
      <dc:creator>lbendlin</dc:creator>
      <dc:date>2024-08-06T21:01:36Z</dc:date>
    </item>
    <item>
      <title>Re: Issue with Multiple date keys and displaying dates on report.</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Issue-with-Multiple-date-keys-and-displaying-dates-on-report/m-p/4089395#M162308</link>
      <description>&lt;P&gt;This report and the majority of them are built using direct connect, so the SSAS Tabular need to be fully modeled out. I believe in that setup, the best that the report developer can do is to create their own measures, but i could be mistaken.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;TABLE border="1"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;Dim.Date&lt;/TD&gt;&lt;TD&gt;Relationship&lt;/TD&gt;&lt;TD&gt;fact.Sales&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;Date_Key&lt;/TD&gt;&lt;TD&gt;Active&lt;/TD&gt;&lt;TD&gt;Order_Date_Key&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;Date_Key&lt;/TD&gt;&lt;TD&gt;Inactive&lt;/TD&gt;&lt;TD&gt;Paid_Date_Key&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If i wanted to do a report that looked like the following:&lt;/P&gt;&lt;TABLE border="1"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;Order Date&lt;/TD&gt;&lt;TD&gt;Paid Date&lt;/TD&gt;&lt;TD&gt;Order Amount&lt;/TD&gt;&lt;TD&gt;Discount Amount&lt;/TD&gt;&lt;TD&gt;Paid Amount&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;2024-01-01&lt;/TD&gt;&lt;TD&gt;2024-01-02&lt;/TD&gt;&lt;TD&gt;$100.00&lt;/TD&gt;&lt;TD&gt;$20.00&lt;/TD&gt;&lt;TD&gt;$80.00&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;2024-01-01&lt;/TD&gt;&lt;TD&gt;2024-01-03&lt;/TD&gt;&lt;TD&gt;$200.00&lt;/TD&gt;&lt;TD&gt;$0.00&lt;/TD&gt;&lt;TD&gt;$200.00&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;So Order Amount is just a SUM, same with Discount Amount. For Paid Amount the DAX looks something like&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;FONT&gt;&lt;FONT&gt;CALCULATE&lt;/FONT&gt; &lt;FONT&gt;(&lt;/FONT&gt; &lt;FONT&gt;SUM&lt;/FONT&gt;&lt;FONT&gt;(&lt;/FONT&gt;&lt;FONT&gt;'Fact.Sales'[Paid_Amount]&lt;/FONT&gt;&lt;FONT&gt;)&lt;/FONT&gt;&lt;FONT&gt;, &lt;/FONT&gt;&lt;FONT&gt;USERELATIONSHIP&lt;/FONT&gt; &lt;FONT&gt;(&lt;/FONT&gt;&lt;FONT&gt;'Fact.Sales'[Paid_Date_Key], 'dim.date'[Date_Key]&lt;/FONT&gt;&lt;FONT&gt;)&lt;/FONT&gt; &lt;FONT&gt;)&lt;/FONT&gt;&lt;/FONT&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The issue ive been having is around the "Paid Date" column, how can i display that effectivly in a measure or what other options should i be exploring?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I hope this example is clearer,&amp;nbsp;this is just a rough scenario so it might not be 100% but it should paint a picture.&lt;/P&gt;</description>
      <pubDate>Thu, 08 Aug 2024 13:52:13 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Issue-with-Multiple-date-keys-and-displaying-dates-on-report/m-p/4089395#M162308</guid>
      <dc:creator>Cosmac</dc:creator>
      <dc:date>2024-08-08T13:52:13Z</dc:date>
    </item>
    <item>
      <title>Re: Issue with Multiple date keys and displaying dates on report.</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Issue-with-Multiple-date-keys-and-displaying-dates-on-report/m-p/4089454#M162312</link>
      <description>&lt;LI-CODE lang="markup"&gt;are built using direct connect,&lt;/LI-CODE&gt;
&lt;P&gt;That's not a thing.&amp;nbsp; Either you have Live Connection (no option to edit)&amp;nbsp; or Direct Query (with option to edit).&lt;/P&gt;</description>
      <pubDate>Thu, 08 Aug 2024 14:18:10 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Issue-with-Multiple-date-keys-and-displaying-dates-on-report/m-p/4089454#M162312</guid>
      <dc:creator>lbendlin</dc:creator>
      <dc:date>2024-08-08T14:18:10Z</dc:date>
    </item>
    <item>
      <title>Re: Issue with Multiple date keys and displaying dates on report.</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Issue-with-Multiple-date-keys-and-displaying-dates-on-report/m-p/4089470#M162314</link>
      <description>&lt;P&gt;Sorry for using incorrect terminology. In power BI i see two options, "Import" and "Connect Live".&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The scenario i am talking about is reports build using&amp;nbsp;&lt;SPAN&gt;&amp;nbsp;Live Connection (no option to edit).&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 08 Aug 2024 14:25:13 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Issue-with-Multiple-date-keys-and-displaying-dates-on-report/m-p/4089470#M162314</guid>
      <dc:creator>Cosmac</dc:creator>
      <dc:date>2024-08-08T14:25:13Z</dc:date>
    </item>
    <item>
      <title>Re: Issue with Multiple date keys and displaying dates on report.</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Issue-with-Multiple-date-keys-and-displaying-dates-on-report/m-p/4089873#M162328</link>
      <description>&lt;P&gt;Does it have to be SSAS Tabular or could it instead be implemented as a Power BI Semantic Model?&lt;/P&gt;</description>
      <pubDate>Thu, 08 Aug 2024 18:01:00 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Issue-with-Multiple-date-keys-and-displaying-dates-on-report/m-p/4089873#M162328</guid>
      <dc:creator>lbendlin</dc:creator>
      <dc:date>2024-08-08T18:01:00Z</dc:date>
    </item>
    <item>
      <title>Re: Issue with Multiple date keys and displaying dates on report.</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Issue-with-Multiple-date-keys-and-displaying-dates-on-report/m-p/4095501#M162524</link>
      <description>&lt;P&gt;Currently it needs to be a SSAS Tabular model.&lt;/P&gt;</description>
      <pubDate>Mon, 12 Aug 2024 13:14:40 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Issue-with-Multiple-date-keys-and-displaying-dates-on-report/m-p/4095501#M162524</guid>
      <dc:creator>Cosmac</dc:creator>
      <dc:date>2024-08-12T13:14:40Z</dc:date>
    </item>
    <item>
      <title>Re: Issue with Multiple date keys and displaying dates on report.</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Issue-with-Multiple-date-keys-and-displaying-dates-on-report/m-p/4095531#M162525</link>
      <description>&lt;P&gt;If you have a Pro license you can open a Pro ticket at &lt;A href="https://admin.powerplatform.microsoft.com/newsupportticket/powerbi" target="_blank"&gt;https://admin.powerplatform.microsoft.com/newsupportticket/powerbi&lt;/A&gt;&lt;BR /&gt;Otherwise you can raise an issue at &lt;A href="https://community.fabric.microsoft.com/t5/Issues/idb-p/Issues" target="_blank"&gt;https://community.fabric.microsoft.com/t5/Issues/idb-p/Issues&lt;/A&gt; .&lt;/P&gt;</description>
      <pubDate>Mon, 12 Aug 2024 13:28:41 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Issue-with-Multiple-date-keys-and-displaying-dates-on-report/m-p/4095531#M162525</guid>
      <dc:creator>lbendlin</dc:creator>
      <dc:date>2024-08-12T13:28:41Z</dc:date>
    </item>
  </channel>
</rss>

