<?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: sum only when date is present in both tables in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/sum-only-when-date-is-present-in-both-tables/m-p/3314624#M123985</link>
    <description>&lt;P&gt;Yes, you can use&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;Total Cost = CALCULATE (
	[Costs] + [Rents],
	'Acc'[Code] = "160",
    TREATAS ( VALUES ( 'Costs'[Date] ), 'Date'[Date] )
)&lt;/LI-CODE&gt;</description>
    <pubDate>Tue, 04 Jul 2023 14:04:45 GMT</pubDate>
    <dc:creator>johnt75</dc:creator>
    <dc:date>2023-07-04T14:04:45Z</dc:date>
    <item>
      <title>sum only when date is present in both tables</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/sum-only-when-date-is-present-in-both-tables/m-p/3313858#M123942</link>
      <description>&lt;P&gt;hello everyone!&lt;/P&gt;&lt;P&gt;I have the following problem, I can't figure out how to solve it.&lt;/P&gt;&lt;P&gt;I have 2 tables Cost and Rent, both linked via a calendar table&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I need to sum the values from Cost and Rent only when they are present in the Cost table, otherwise 0,&lt;/P&gt;&lt;P&gt;a simple calculation works fine for single month selected,&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Total Cost =&lt;BR /&gt;CALCULATE&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; [cost],&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Acc[Code] = &lt;/SPAN&gt;&lt;SPAN&gt;"160"&lt;/SPAN&gt;&lt;SPAN&gt;) &lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; + &lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;CALCULATE&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; [rent],&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Acc[Code] = &lt;/SPAN&gt;&lt;SPAN&gt;"160"&lt;/SPAN&gt;&lt;SPAN&gt;)&lt;BR /&gt;&lt;BR /&gt;but when I select YTD (or deselect the all months, only the year is selected), it returns me an incorrect value (summing the total cost and rent),&lt;BR /&gt;is there a way to include the values in the total cost only when [cost] is present from the beginning of the year&lt;BR /&gt;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Example:&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;Cost table&lt;/DIV&gt;&lt;DIV&gt;&lt;TABLE border="1"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;Date&lt;/TD&gt;&lt;TD&gt;Cost&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;01-01-2023&lt;/TD&gt;&lt;TD&gt;100&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;01-03-2023&lt;/TD&gt;&lt;TD&gt;150&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;BR /&gt;Rent table&lt;BR /&gt;&lt;TABLE border="1"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;Date&lt;/TD&gt;&lt;TD&gt;Rent&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;01-01-2023&lt;/TD&gt;&lt;TD&gt;50&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;01-02-2023&lt;/TD&gt;&lt;TD&gt;100&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;01-03-2023&lt;/TD&gt;&lt;TD&gt;150&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;BR /&gt;right now it returns me YTD = 550,&amp;nbsp;&lt;BR /&gt;(Jan, 23 = Cost + Rent =&amp;gt; 100+50 = 150&lt;BR /&gt;Feb, 23 = Cost + Rent =&amp;gt; 0+100 = 100 (Cost is not present)&lt;BR /&gt;Mar, 23 = Cost + Rent =&amp;gt; 150+150 = 300)&lt;BR /&gt;&lt;BR /&gt;but it should return me:&lt;BR /&gt;Total Cost = 450&lt;BR /&gt;(Jan, 23 = Cost + Rent =&amp;gt; 100+50 = 150&lt;BR /&gt;Feb, 23 = 0 (Cost is not present)&lt;BR /&gt;Mar, 23 = Cost + Rent =&amp;gt; 150+150 = 300)&lt;BR /&gt;&lt;BR /&gt;&lt;/DIV&gt;&lt;DIV&gt;and it should work with a single month as well&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;is that possible to achieve ?&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Tue, 04 Jul 2023 08:14:03 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/sum-only-when-date-is-present-in-both-tables/m-p/3313858#M123942</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2023-07-04T08:14:03Z</dc:date>
    </item>
    <item>
      <title>Re: sum only when date is present in both tables</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/sum-only-when-date-is-present-in-both-tables/m-p/3314221#M123955</link>
      <description>&lt;P&gt;Try&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;Total Cost =
CALCULATE (
    [cost] + [rent],
    CROSSFILTER ( 'Date'[Date], 'cost table'[Date], BOTH )
)
&lt;/LI-CODE&gt;</description>
      <pubDate>Tue, 04 Jul 2023 10:26:18 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/sum-only-when-date-is-present-in-both-tables/m-p/3314221#M123955</guid>
      <dc:creator>johnt75</dc:creator>
      <dc:date>2023-07-04T10:26:18Z</dc:date>
    </item>
    <item>
      <title>Re: sum only when date is present in both tables</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/sum-only-when-date-is-present-in-both-tables/m-p/3314276#M123957</link>
      <description>&lt;P&gt;hi,&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="240987" data-lia-user-login="johnt75" class="lia-mention lia-mention-user"&gt;johnt75&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;it returns the same value 550 , which includes rent for Feb&amp;nbsp;&lt;span class="lia-unicode-emoji" title=":frowning_face:"&gt;☹️&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 04 Jul 2023 10:51:12 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/sum-only-when-date-is-present-in-both-tables/m-p/3314276#M123957</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2023-07-04T10:51:12Z</dc:date>
    </item>
    <item>
      <title>Re: sum only when date is present in both tables</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/sum-only-when-date-is-present-in-both-tables/m-p/3314478#M123970</link>
      <description>&lt;P&gt;How about&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;Total Cost =
CALCULATE (
    [cost] + [rent],
    TREATAS ( VALUES ( 'cost table'[Date] ), 'Date'[Date] )
)
&lt;/LI-CODE&gt;</description>
      <pubDate>Tue, 04 Jul 2023 12:40:09 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/sum-only-when-date-is-present-in-both-tables/m-p/3314478#M123970</guid>
      <dc:creator>johnt75</dc:creator>
      <dc:date>2023-07-04T12:40:09Z</dc:date>
    </item>
    <item>
      <title>Re: sum only when date is present in both tables</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/sum-only-when-date-is-present-in-both-tables/m-p/3314612#M123984</link>
      <description>&lt;P&gt;this one works, but only when I apply Acc[Code] = "160" to a visual, I tried to add it into Calculate as filter, it didn't help, only helps when it's applied to the matrix.&amp;nbsp;&lt;BR /&gt;is it possible to insert it into the measure ?&lt;/P&gt;</description>
      <pubDate>Tue, 04 Jul 2023 13:54:26 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/sum-only-when-date-is-present-in-both-tables/m-p/3314612#M123984</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2023-07-04T13:54:26Z</dc:date>
    </item>
    <item>
      <title>Re: sum only when date is present in both tables</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/sum-only-when-date-is-present-in-both-tables/m-p/3314624#M123985</link>
      <description>&lt;P&gt;Yes, you can use&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;Total Cost = CALCULATE (
	[Costs] + [Rents],
	'Acc'[Code] = "160",
    TREATAS ( VALUES ( 'Costs'[Date] ), 'Date'[Date] )
)&lt;/LI-CODE&gt;</description>
      <pubDate>Tue, 04 Jul 2023 14:04:45 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/sum-only-when-date-is-present-in-both-tables/m-p/3314624#M123985</guid>
      <dc:creator>johnt75</dc:creator>
      <dc:date>2023-07-04T14:04:45Z</dc:date>
    </item>
    <item>
      <title>Re: sum only when date is present in both tables</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/sum-only-when-date-is-present-in-both-tables/m-p/3314633#M123987</link>
      <description>&lt;P&gt;i tried it previously, for some reason it doesn't help&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 04 Jul 2023 14:12:43 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/sum-only-when-date-is-present-in-both-tables/m-p/3314633#M123987</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2023-07-04T14:12:43Z</dc:date>
    </item>
    <item>
      <title>Re: sum only when date is present in both tables</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/sum-only-when-date-is-present-in-both-tables/m-p/3314637#M123988</link>
      <description>&lt;P&gt;but if i apply it to the visual it does work properly&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 04 Jul 2023 14:14:37 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/sum-only-when-date-is-present-in-both-tables/m-p/3314637#M123988</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2023-07-04T14:14:37Z</dc:date>
    </item>
    <item>
      <title>Re: sum only when date is present in both tables</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/sum-only-when-date-is-present-in-both-tables/m-p/3314645#M123989</link>
      <description>&lt;P&gt;What does your model look like ? I tried it with&lt;/P&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;and it worked. Also, at what level of the hierarchy is the account code ?&lt;/P&gt;</description>
      <pubDate>Tue, 04 Jul 2023 14:17:49 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/sum-only-when-date-is-present-in-both-tables/m-p/3314645#M123989</guid>
      <dc:creator>johnt75</dc:creator>
      <dc:date>2023-07-04T14:17:49Z</dc:date>
    </item>
    <item>
      <title>Re: sum only when date is present in both tables</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/sum-only-when-date-is-present-in-both-tables/m-p/3314651#M123991</link>
      <description>&lt;P&gt;it seems to be the sames&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 04 Jul 2023 14:20:51 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/sum-only-when-date-is-present-in-both-tables/m-p/3314651#M123991</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2023-07-04T14:20:51Z</dc:date>
    </item>
    <item>
      <title>Re: sum only when date is present in both tables</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/sum-only-when-date-is-present-in-both-tables/m-p/3314676#M123993</link>
      <description>&lt;P&gt;Try putting a couple more measures into your matrix,&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;Dates with acc =
CALCULATE (
    COUNTROWS ( 'Calendar' ),
    'Acc'[Code] = "160",
    TREATAS ( VALUES ( 'Cost'[Date] ), 'Calendar'[Date] )
)

Dates without acc =
CALCULATE (
    COUNTROWS ( 'Calendar' ),
    TREATAS ( VALUES ( 'Cost'[Date] ), 'Calendar'[Date] )
)
&lt;/LI-CODE&gt;
&lt;P&gt;See what they give both with and without a filter on the visual.&lt;/P&gt;</description>
      <pubDate>Tue, 04 Jul 2023 14:34:14 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/sum-only-when-date-is-present-in-both-tables/m-p/3314676#M123993</guid>
      <dc:creator>johnt75</dc:creator>
      <dc:date>2023-07-04T14:34:14Z</dc:date>
    </item>
    <item>
      <title>Re: sum only when date is present in both tables</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/sum-only-when-date-is-present-in-both-tables/m-p/3314685#M123994</link>
      <description>&lt;P&gt;this is when filter applied to the matrix&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;and this is when not&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 04 Jul 2023 14:39:18 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/sum-only-when-date-is-present-in-both-tables/m-p/3314685#M123994</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2023-07-04T14:39:18Z</dc:date>
    </item>
    <item>
      <title>Re: sum only when date is present in both tables</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/sum-only-when-date-is-present-in-both-tables/m-p/3314732#M124000</link>
      <description>&lt;P&gt;It looks like its completely ignoring the filter inside the CALCULATE. Not sure if this will make any difference but try&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;Total Cost =
VAR MonthsWithCost =
    CALCULATETABLE ( VALUES ( 'Costs'[Date] ), 'Acc'[code] = "160" )
VAR Result =
    CALCULATE (
        [Costs] + [Rents],
        'Acc'[Code] = "160",
        TREATAS ( MonthsWithCost, 'Date'[Date] )
    )
RETURN
    Result
&lt;/LI-CODE&gt;</description>
      <pubDate>Tue, 04 Jul 2023 14:57:04 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/sum-only-when-date-is-present-in-both-tables/m-p/3314732#M124000</guid>
      <dc:creator>johnt75</dc:creator>
      <dc:date>2023-07-04T14:57:04Z</dc:date>
    </item>
    <item>
      <title>Re: sum only when date is present in both tables</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/sum-only-when-date-is-present-in-both-tables/m-p/3314737#M124001</link>
      <description>&lt;P&gt;it worked!&lt;BR /&gt;thanks a lot, do you by any chance know what was the issue ? why simple filter in calculate didn't work ?&lt;/P&gt;</description>
      <pubDate>Tue, 04 Jul 2023 15:01:29 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/sum-only-when-date-is-present-in-both-tables/m-p/3314737#M124001</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2023-07-04T15:01:29Z</dc:date>
    </item>
    <item>
      <title>Re: sum only when date is present in both tables</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/sum-only-when-date-is-present-in-both-tables/m-p/3314742#M124003</link>
      <description>&lt;P&gt;it calculated fine, but I noticed that totals didn't change&lt;BR /&gt;how could this be ?&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 04 Jul 2023 15:05:57 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/sum-only-when-date-is-present-in-both-tables/m-p/3314742#M124003</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2023-07-04T15:05:57Z</dc:date>
    </item>
    <item>
      <title>Re: sum only when date is present in both tables</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/sum-only-when-date-is-present-in-both-tables/m-p/3314750#M124005</link>
      <description>&lt;P&gt;I'm nowhere near sure on this, but I think its to do with the way that queries are executed to produce a matrix, particularly a matrix with a hierarchy on the roles. Several queries are produced and then combined, and my guess is that at some level the filter we were generating resulted in an empty table, or a blank value, and that led to its being ignored for some parts of the calculation.&lt;/P&gt;
&lt;P&gt;When you had the filter on the visual then that would be applied to all of the different queries and that's why it worked.&lt;/P&gt;</description>
      <pubDate>Tue, 04 Jul 2023 15:10:12 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/sum-only-when-date-is-present-in-both-tables/m-p/3314750#M124005</guid>
      <dc:creator>johnt75</dc:creator>
      <dc:date>2023-07-04T15:10:12Z</dc:date>
    </item>
    <item>
      <title>Re: sum only when date is present in both tables</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/sum-only-when-date-is-present-in-both-tables/m-p/3314777#M124006</link>
      <description>&lt;P&gt;Try this version&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;Total costs =
CALCULATE (
    SUMX (
        DISTINCT ( Costs[Date] ),
        VAR CurrentDate = Costs[Date]
        RETURN
            CALCULATE ( [Costs] + [Rents], TREATAS ( { CurrentDate }, 'Calendar'[Date] ) )
    ),
    'Acc'[Code] = "160"
)
&lt;/LI-CODE&gt;</description>
      <pubDate>Tue, 04 Jul 2023 15:18:07 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/sum-only-when-date-is-present-in-both-tables/m-p/3314777#M124006</guid>
      <dc:creator>johnt75</dc:creator>
      <dc:date>2023-07-04T15:18:07Z</dc:date>
    </item>
    <item>
      <title>Re: sum only when date is present in both tables</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/sum-only-when-date-is-present-in-both-tables/m-p/3314797#M124007</link>
      <description>&lt;P&gt;somehow it returns the same&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 04 Jul 2023 15:23:32 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/sum-only-when-date-is-present-in-both-tables/m-p/3314797#M124007</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2023-07-04T15:23:32Z</dc:date>
    </item>
    <item>
      <title>Re: sum only when date is present in both tables</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/sum-only-when-date-is-present-in-both-tables/m-p/3314812#M124008</link>
      <description>&lt;P&gt;Its possible that the total is actually correct. Export the data to Excel and see what it comes up with as the total.&lt;/P&gt;</description>
      <pubDate>Tue, 04 Jul 2023 15:29:10 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/sum-only-when-date-is-present-in-both-tables/m-p/3314812#M124008</guid>
      <dc:creator>johnt75</dc:creator>
      <dc:date>2023-07-04T15:29:10Z</dc:date>
    </item>
    <item>
      <title>Re: sum only when date is present in both tables</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/sum-only-when-date-is-present-in-both-tables/m-p/3314827#M124009</link>
      <description>&lt;P&gt;in excel total is correct&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 04 Jul 2023 15:33:49 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/sum-only-when-date-is-present-in-both-tables/m-p/3314827#M124009</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2023-07-04T15:33:49Z</dc:date>
    </item>
  </channel>
</rss>

