<?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: Problems with CALCULATE and ALL when going from Import to DirectQuery in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Problems-with-CALCULATE-and-ALL-when-going-from-Import-to/m-p/4408279#M175049</link>
    <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="929621" data-lia-user-login="DaveW31" class="lia-mention lia-mention-user"&gt;DaveW31&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;As per your last reply, it appears that you would like to retrieve the column [Current Record Indicator]&lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp;directly from the data source SQL side. To achieve this, you can use the following SQL statement:&lt;/SPAN&gt;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;SELECT 
    [Transaction ID],
    [Invoice Date],
    CASE 
        WHEN [Invoice Date] = MAX([Invoice Date]) OVER (PARTITION BY [Transaction ID]) THEN 'Y'
        ELSE 'N'
    END AS [Current Record Indicator]
FROM 
    [Pharmacy Claims]&lt;/LI-CODE&gt;
&lt;P&gt;&lt;A href="https://learn.microsoft.com/en-us/sql/t-sql/queries/select-over-clause-transact-sql?view=sql-server-ver16" target="_blank"&gt;OVER Clause (Transact-SQL) - SQL Server | Microsoft Learn&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://learnsql.com/blog/partition-by-with-over-sql/" target="_blank"&gt;How to Use the SQL PARTITION BY With OVER&lt;/A&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Best Regards&lt;/P&gt;</description>
    <pubDate>Thu, 13 Feb 2025 06:11:34 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2025-02-13T06:11:34Z</dc:date>
    <item>
      <title>Problems with CALCULATE and ALL when going from Import to DirectQuery</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Problems-with-CALCULATE-and-ALL-when-going-from-Import-to/m-p/4405755#M174918</link>
      <description>&lt;P&gt;I'm new to Power Bi and am having an issue when moving from Import to DirectQuery with a calculated column.&amp;nbsp; It ran as expected when using the Import mode, but I can't figure out how to rewrite for DirectQuery.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The DAX is:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Current Record Indicator =&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;VAR&lt;/SPAN&gt; &lt;SPAN&gt;TI&lt;/SPAN&gt;&lt;SPAN&gt; = &lt;/SPAN&gt;&lt;SPAN&gt;'Pharmacy Claims'&lt;/SPAN&gt;&lt;SPAN&gt;[Transaction ID]&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;VAR&lt;/SPAN&gt; &lt;SPAN&gt;MD&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;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; &lt;/SPAN&gt;&lt;SPAN&gt;MAX&lt;/SPAN&gt;&lt;SPAN&gt; ( &lt;/SPAN&gt;&lt;SPAN&gt;'Pharmacy Claims'&lt;/SPAN&gt;&lt;SPAN&gt;[Invoice Date]&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; &lt;/SPAN&gt;&lt;SPAN&gt;ALL&lt;/SPAN&gt;&lt;SPAN&gt; ( &lt;/SPAN&gt;&lt;SPAN&gt;'Pharmacy Claims'&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; &lt;/SPAN&gt;&lt;SPAN&gt;'Pharmacy Claims'&lt;/SPAN&gt;&lt;SPAN&gt;[Transaction ID]&lt;/SPAN&gt;&lt;SPAN&gt; = &lt;/SPAN&gt;&lt;SPAN&gt;TI&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;RETURN&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;IF&lt;/SPAN&gt;&lt;SPAN&gt; ( &lt;/SPAN&gt;&lt;SPAN&gt;'Pharmacy Claims'&lt;/SPAN&gt;&lt;SPAN&gt;[Invoice Date]&lt;/SPAN&gt;&lt;SPAN&gt; = &lt;/SPAN&gt;&lt;SPAN&gt;MD&lt;/SPAN&gt;&lt;SPAN&gt;, &lt;/SPAN&gt;&lt;SPAN&gt;"Y"&lt;/SPAN&gt;&lt;SPAN&gt;, &lt;/SPAN&gt;&lt;SPAN&gt;"N"&lt;/SPAN&gt;&lt;SPAN&gt; )&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;I'm just trying to get a column with a "Y" if the Invoice Date is the most current otherwise a "N"&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Thanks for your help in advance.&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Tue, 11 Feb 2025 21:04:44 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Problems-with-CALCULATE-and-ALL-when-going-from-Import-to/m-p/4405755#M174918</guid>
      <dc:creator>DaveW31</dc:creator>
      <dc:date>2025-02-11T21:04:44Z</dc:date>
    </item>
    <item>
      <title>Re: Problems with CALCULATE and ALL when going from Import to DirectQuery</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Problems-with-CALCULATE-and-ALL-when-going-from-Import-to/m-p/4405837#M174921</link>
      <description>&lt;P&gt;hi &lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="929621" data-lia-user-login="DaveW31" class="lia-mention lia-mention-user"&gt;DaveW31&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Can you try the below code in the PowerQuery box when you add a custom column?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;let
    AddCurrentRecordIndicator = Table.AddColumn(
        #"PreviousStep", // Replace with your previous step name
        "Current Record Indicator",
        each 
            let
                TI = [Transaction ID],
                MD = 
                    List.Max(
                        Table.SelectRows(
                            #"PreviousStep", // Replace with your previous step name
                            each [Transaction ID] = TI
                        )[Invoice Date]
                    )
            in
                if [Invoice Date] = MD then "Y" else "N"
    )
in
    AddCurrentRecordIndicator&lt;/LI-CODE&gt;&lt;P&gt;Hope this helps!&lt;/P&gt;</description>
      <pubDate>Tue, 11 Feb 2025 22:31:36 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Problems-with-CALCULATE-and-ALL-when-going-from-Import-to/m-p/4405837#M174921</guid>
      <dc:creator>amarma</dc:creator>
      <dc:date>2025-02-11T22:31:36Z</dc:date>
    </item>
    <item>
      <title>Re: Problems with CALCULATE and ALL when going from Import to DirectQuery</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Problems-with-CALCULATE-and-ALL-when-going-from-Import-to/m-p/4406126#M174931</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="929621" data-lia-user-login="DaveW31" class="lia-mention lia-mention-user"&gt;DaveW31&lt;/a&gt; ,&lt;/P&gt;
&lt;P&gt;There are some limitations when the connection mode of data source is &lt;EM&gt;&lt;STRONG&gt;Direct Query&lt;/STRONG&gt;&lt;/EM&gt;, please find the details in the following official documentation.&lt;/P&gt;
&lt;P&gt;&lt;A href="https://learn.microsoft.com/en-us/power-bi/connect-data/desktop-directquery-about#modeling-limitations" target="_self"&gt;DirectQuery in Power BI - Power BI | Microsoft Learn&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;Best Regards&lt;/P&gt;</description>
      <pubDate>Wed, 12 Feb 2025 03:34:51 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Problems-with-CALCULATE-and-ALL-when-going-from-Import-to/m-p/4406126#M174931</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2025-02-12T03:34:51Z</dc:date>
    </item>
    <item>
      <title>Re: Problems with CALCULATE and ALL when going from Import to DirectQuery</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Problems-with-CALCULATE-and-ALL-when-going-from-Import-to/m-p/4406248#M174936</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="929621" data-lia-user-login="DaveW31" class="lia-mention lia-mention-user"&gt;DaveW31&lt;/a&gt;&amp;nbsp;&amp;nbsp;&lt;SPAN&gt;When switching from Import mode to DirectQuery in Power BI, certain DAX functions and calculated columns may not work as expected due to the differences in how data is processed. In DirectQuery mode, calculations are pushed to the underlying data source, which can lead to limitations.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;To achieve your goal in DirectQuery mode, you can use a measure instead of a calculated column. Here is how you can rewrite your dax code to create measure:&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;Current Record Indicator = 

VAR MD = 
    CALCULATE(
        MAX('Pharmacy Claims'[Invoice Date]),
        ALLEXCEPT('Pharmacy Claims', 'Pharmacy Claims'[Transaction ID])
    )

RETURN
    IF(MAX('Pharmacy Claims'[Invoice Date]) = MD, "Y", "N")
&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;This&amp;nbsp;&lt;SPAN&gt;measure will check if the Invoice Date&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;is the most current for each Transaction ID. Add&amp;nbsp;&lt;/SPAN&gt;this measure to your report, and it should display "Y" if the &lt;SPAN&gt;Invoice Date&amp;nbsp;&lt;/SPAN&gt;is the most current for the &lt;SPAN&gt;Transaction ID&lt;/SPAN&gt;, otherwise "N".&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Hope this helps!!&lt;/P&gt;
&lt;P&gt;If this solved your problem, please accept it as a solution and a kudos!!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Best Regards,&lt;BR /&gt;Shahariar Hafiz&lt;/P&gt;</description>
      <pubDate>Wed, 12 Feb 2025 05:20:49 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Problems-with-CALCULATE-and-ALL-when-going-from-Import-to/m-p/4406248#M174936</guid>
      <dc:creator>shafiz_p</dc:creator>
      <dc:date>2025-02-12T05:20:49Z</dc:date>
    </item>
    <item>
      <title>Re: Problems with CALCULATE and ALL when going from Import to DirectQuery</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Problems-with-CALCULATE-and-ALL-when-going-from-Import-to/m-p/4407743#M175016</link>
      <description>&lt;P&gt;amarma, thank you for your response.&amp;nbsp; I tried your suggestion and it appeared like it would work when I applied it.&amp;nbsp; After 5 hours, I got the message "This step results in a query that is not supported in DIrectQuery mode.&amp;nbsp; Switch all tables to import.&amp;nbsp; The table that this applies to is 70+ million records.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The code I put in Advaced Editor was:&lt;/P&gt;&lt;P&gt;#"Added Custom1" = Table.AddColumn(#"Renamed Columns", "Current Record Indicator", each let ( TI = [Transaction ID], MD = List.Max( Table.SelectRows( #"Removed Other Columns", each [Transaction ID] = TI )[Invoice Date] ) in if [Invoice Date] = MD then "Y" else "N" ) )&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;in&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; #"Added Custom1"&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I don't think I messed anything up.&amp;nbsp; Was not showing any issues before I tried to apply it.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks again.&lt;/P&gt;</description>
      <pubDate>Wed, 12 Feb 2025 22:09:25 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Problems-with-CALCULATE-and-ALL-when-going-from-Import-to/m-p/4407743#M175016</guid>
      <dc:creator>DaveW31</dc:creator>
      <dc:date>2025-02-12T22:09:25Z</dc:date>
    </item>
    <item>
      <title>Re: Problems with CALCULATE and ALL when going from Import to DirectQuery</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Problems-with-CALCULATE-and-ALL-when-going-from-Import-to/m-p/4407746#M175017</link>
      <description>&lt;P&gt;&lt;SPAN&gt;v-yiruan-msft, I have read that.&amp;nbsp; Still learning how it all works.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Thanks for your help.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 12 Feb 2025 22:10:57 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Problems-with-CALCULATE-and-ALL-when-going-from-Import-to/m-p/4407746#M175017</guid>
      <dc:creator>DaveW31</dc:creator>
      <dc:date>2025-02-12T22:10:57Z</dc:date>
    </item>
    <item>
      <title>Re: Problems with CALCULATE and ALL when going from Import to DirectQuery</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Problems-with-CALCULATE-and-ALL-when-going-from-Import-to/m-p/4407749#M175018</link>
      <description>&lt;P&gt;&lt;SPAN&gt;Shahariar Hafiz, I'm trying to add it as a column.&amp;nbsp; Am thinking I can add it into the table in SQL before I load the table into Power BI.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Thanks for your help.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Dave&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 12 Feb 2025 22:13:17 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Problems-with-CALCULATE-and-ALL-when-going-from-Import-to/m-p/4407749#M175018</guid>
      <dc:creator>DaveW31</dc:creator>
      <dc:date>2025-02-12T22:13:17Z</dc:date>
    </item>
    <item>
      <title>Re: Problems with CALCULATE and ALL when going from Import to DirectQuery</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Problems-with-CALCULATE-and-ALL-when-going-from-Import-to/m-p/4408244#M175047</link>
      <description>&lt;P&gt;HI&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="929621" data-lia-user-login="DaveW31" class="lia-mention lia-mention-user"&gt;DaveW31&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Your current DAX formula for &lt;STRONG data-start="29" data-end="57"&gt;Current Record Indicator&lt;/STRONG&gt; works in &lt;STRONG data-start="67" data-end="82"&gt;Import Mode&lt;/STRONG&gt; because &lt;STRONG data-start="91" data-end="113"&gt;calculated columns&lt;/STRONG&gt; are evaluated once during data load. However, &lt;STRONG data-start="160" data-end="180"&gt;DirectQuery Mode&lt;/STRONG&gt; does not support row-by-row evaluation in the same way. Instead, you should replace the &lt;STRONG data-start="269" data-end="290"&gt;calculated column&lt;/STRONG&gt; with a &lt;STRONG data-start="298" data-end="309"&gt;measure&lt;/STRONG&gt;, since measures are evaluated dynamically at query time.&lt;/P&gt;
&lt;P data-pm-slice="0 0 []"&gt;Since DirectQuery cannot use ALL in the same way for row context evaluation, you can rewrite it as:&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;Current Record Indicator = 
VAR MD = 
    CALCULATE (
        MAX ( 'Pharmacy Claims'[Invoice Date] ),
        ALLEXCEPT ( 'Pharmacy Claims', 'Pharmacy Claims'[Transaction ID] )
    )
RETURN 
    IF ( SELECTEDVALUE ( 'Pharmacy Claims'[Invoice Date] ) = MD, "Y", "N" )
&lt;/LI-CODE&gt;
&lt;P&gt;Since &lt;STRONG data-start="1274" data-end="1348"&gt;DirectQuery does not support row-wise operations in calculated columns&lt;/STRONG&gt;, using a measure is the best approach.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 13 Feb 2025 05:55:33 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Problems-with-CALCULATE-and-ALL-when-going-from-Import-to/m-p/4408244#M175047</guid>
      <dc:creator>Poojara_D12</dc:creator>
      <dc:date>2025-02-13T05:55:33Z</dc:date>
    </item>
    <item>
      <title>Re: Problems with CALCULATE and ALL when going from Import to DirectQuery</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Problems-with-CALCULATE-and-ALL-when-going-from-Import-to/m-p/4408279#M175049</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="929621" data-lia-user-login="DaveW31" class="lia-mention lia-mention-user"&gt;DaveW31&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;As per your last reply, it appears that you would like to retrieve the column [Current Record Indicator]&lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp;directly from the data source SQL side. To achieve this, you can use the following SQL statement:&lt;/SPAN&gt;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;SELECT 
    [Transaction ID],
    [Invoice Date],
    CASE 
        WHEN [Invoice Date] = MAX([Invoice Date]) OVER (PARTITION BY [Transaction ID]) THEN 'Y'
        ELSE 'N'
    END AS [Current Record Indicator]
FROM 
    [Pharmacy Claims]&lt;/LI-CODE&gt;
&lt;P&gt;&lt;A href="https://learn.microsoft.com/en-us/sql/t-sql/queries/select-over-clause-transact-sql?view=sql-server-ver16" target="_blank"&gt;OVER Clause (Transact-SQL) - SQL Server | Microsoft Learn&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://learnsql.com/blog/partition-by-with-over-sql/" target="_blank"&gt;How to Use the SQL PARTITION BY With OVER&lt;/A&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Best Regards&lt;/P&gt;</description>
      <pubDate>Thu, 13 Feb 2025 06:11:34 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Problems-with-CALCULATE-and-ALL-when-going-from-Import-to/m-p/4408279#M175049</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2025-02-13T06:11:34Z</dc:date>
    </item>
    <item>
      <title>Re: Problems with CALCULATE and ALL when going from Import to DirectQuery</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Problems-with-CALCULATE-and-ALL-when-going-from-Import-to/m-p/4414320#M175302</link>
      <description>&lt;P&gt;&lt;SPAN&gt;Poojara,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;The script keeps timing out, not sure what is going on with it.&amp;nbsp; I'm still looking at it.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Thanks,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Dave&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 17 Feb 2025 17:18:17 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Problems-with-CALCULATE-and-ALL-when-going-from-Import-to/m-p/4414320#M175302</guid>
      <dc:creator>DaveW31</dc:creator>
      <dc:date>2025-02-17T17:18:17Z</dc:date>
    </item>
    <item>
      <title>Re: Problems with CALCULATE and ALL when going from Import to DirectQuery</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Problems-with-CALCULATE-and-ALL-when-going-from-Import-to/m-p/4414323#M175303</link>
      <description>&lt;P&gt;Shahariar,&amp;nbsp;&lt;/P&gt;&lt;P&gt;I tried adding the measure and it&lt;SPAN&gt;&amp;nbsp;keeps timing out, not sure what is going on with it.&amp;nbsp; I'm still looking at it.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Thanks,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Dave&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 17 Feb 2025 17:19:55 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Problems-with-CALCULATE-and-ALL-when-going-from-Import-to/m-p/4414323#M175303</guid>
      <dc:creator>DaveW31</dc:creator>
      <dc:date>2025-02-17T17:19:55Z</dc:date>
    </item>
  </channel>
</rss>

