<?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 Job  Number not filtering by date in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Job-Number-not-filtering-by-date/m-p/3082403#M107504</link>
    <description>&lt;P&gt;Hi! I would like to ask how can I my values be filtered by date. Please see my data model below.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I do have 6 tables connected to each other&lt;/P&gt;&lt;P&gt;&lt;FONT color="#FF0000"&gt;Job&lt;/FONT&gt; have relationship with &lt;FONT color="#FF0000"&gt;Job Register&lt;/FONT&gt; and Job Budget through "Job UID"&lt;/P&gt;&lt;P&gt;&lt;FONT color="#FF0000"&gt;Job Register&lt;/FONT&gt; have relationship with &lt;FONT color="#FF0000"&gt;Accounts&lt;/FONT&gt; through"Account UID"&lt;/P&gt;&lt;P&gt;&lt;FONT color="#FF0000"&gt;Accounts&lt;/FONT&gt; have relationship with &lt;FONT color="#FF0000"&gt;Journal Transactions&lt;/FONT&gt; through"Account UID"&lt;/P&gt;&lt;P&gt;Journal Transaction have relationship with Dates through "Date".&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#000000"&gt;I'm trying to get Sum of square meters in Job table but when I select certain year it's not working.&lt;/FONT&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;&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;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Thu, 16 Feb 2023 00:10:54 GMT</pubDate>
    <dc:creator>kristel_tulio</dc:creator>
    <dc:date>2023-02-16T00:10:54Z</dc:date>
    <item>
      <title>Job  Number not filtering by date</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Job-Number-not-filtering-by-date/m-p/3082403#M107504</link>
      <description>&lt;P&gt;Hi! I would like to ask how can I my values be filtered by date. Please see my data model below.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I do have 6 tables connected to each other&lt;/P&gt;&lt;P&gt;&lt;FONT color="#FF0000"&gt;Job&lt;/FONT&gt; have relationship with &lt;FONT color="#FF0000"&gt;Job Register&lt;/FONT&gt; and Job Budget through "Job UID"&lt;/P&gt;&lt;P&gt;&lt;FONT color="#FF0000"&gt;Job Register&lt;/FONT&gt; have relationship with &lt;FONT color="#FF0000"&gt;Accounts&lt;/FONT&gt; through"Account UID"&lt;/P&gt;&lt;P&gt;&lt;FONT color="#FF0000"&gt;Accounts&lt;/FONT&gt; have relationship with &lt;FONT color="#FF0000"&gt;Journal Transactions&lt;/FONT&gt; through"Account UID"&lt;/P&gt;&lt;P&gt;Journal Transaction have relationship with Dates through "Date".&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#000000"&gt;I'm trying to get Sum of square meters in Job table but when I select certain year it's not working.&lt;/FONT&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;&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;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 16 Feb 2023 00:10:54 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Job-Number-not-filtering-by-date/m-p/3082403#M107504</guid>
      <dc:creator>kristel_tulio</dc:creator>
      <dc:date>2023-02-16T00:10:54Z</dc:date>
    </item>
    <item>
      <title>Re: Job  Number not filtering by date</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Job-Number-not-filtering-by-date/m-p/3082591#M107512</link>
      <description>&lt;P&gt;try this&lt;/P&gt;
&lt;LI-CODE lang="cpp"&gt;NewMeasure =
VAR _accts =
    SUMMARIZE ( 'Journal Transactions', 'Accounts'[Account UID] )
RETURN
    SUMX (
        CALCULATETABLE (
            SUMMARIZE ( 'Job Register', 'Job'[Job UID], 'Job'[Number - Copy] ),
            _accts
        ),
        'Job'[Number - Copy]
    )&lt;/LI-CODE&gt;</description>
      <pubDate>Thu, 16 Feb 2023 03:10:06 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Job-Number-not-filtering-by-date/m-p/3082591#M107512</guid>
      <dc:creator>wdx223_Daniel</dc:creator>
      <dc:date>2023-02-16T03:10:06Z</dc:date>
    </item>
    <item>
      <title>Re: Job  Number not filtering by date</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Job-Number-not-filtering-by-date/m-p/3091596#M108324</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="264353" data-lia-user-login="wdx223_Daniel" class="lia-mention lia-mention-user"&gt;wdx223_Daniel&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you for your response but it's not working still when I change the date in the slicer.&lt;/P&gt;</description>
      <pubDate>Wed, 22 Feb 2023 00:18:31 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Job-Number-not-filtering-by-date/m-p/3091596#M108324</guid>
      <dc:creator>kristel_tulio</dc:creator>
      <dc:date>2023-02-22T00:18:31Z</dc:date>
    </item>
  </channel>
</rss>

