<?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: DAX Query help in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-Query-help/m-p/5014769#M187136</link>
    <description>&lt;P&gt;Hello&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="722659" data-lia-user-login="krish42" class="lia-mention lia-mention-user"&gt;krish42&lt;/a&gt;,&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;The resource issue is caused by using [Settlement Exch Adj] inside SUMX over CustTrans.&lt;/P&gt;&lt;P&gt;When a measure is evaluated inside an iterator, DAX performs a context transition and may repeatedly scan the related table for every row. With large tables this can exhaust resources.&lt;/P&gt;&lt;P&gt;Microsoft documentation:&lt;/P&gt;&lt;P&gt;Row context and filter context in DAX&lt;BR /&gt;&lt;A href="https://learn.microsoft.com/dax/row-context-and-filter-context-in-dax" target="_new" rel="noopener"&gt;https://learn.microsoft.com/dax/row-context-and-filter-context-in-dax&lt;/A&gt;&lt;/P&gt;&lt;P&gt;CALCULATE function (context transition)&lt;BR /&gt;&lt;A href="https://learn.microsoft.com/dax/calculate-function-dax" target="_new" rel="noopener"&gt;https://learn.microsoft.com/dax/calculate-function-dax&lt;/A&gt;&lt;/P&gt;&lt;P&gt;SUMX function&lt;BR /&gt;&lt;A href="https://learn.microsoft.com/dax/sumx-function-dax" target="_new" rel="noopener"&gt;https://learn.microsoft.com/dax/sumx-function-dax&lt;/A&gt;&lt;/P&gt;&lt;P&gt;To resolve this, avoid calling settlement measures inside SUMX.&lt;BR /&gt;Instead, calculate the exchange adjustment per transaction using the relationship.&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Result Amount&lt;BR /&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;Result Amount :=
VAR AgedDebtDate = MAX ( 'Calendar'[Date] )
RETURN
CALCULATE (
    SUMX (
        CustTrans,
        VAR BaseAmount = CustTrans[AMOUNTMST]
        VAR TransExch = CustTrans[EXCHADJUSTMENT]
        VAR SettlementExch =
            CALCULATE (
                SUM ( CustSettlements[EXCHADJUSTMENT] ),
                CustSettlements[TRANSDATE] &amp;lt;= AgedDebtDate
            )
        VAR FinalExch =
            IF (
                TransExch = 0 &amp;amp;&amp;amp; SettlementExch &amp;lt;&amp;gt; 0,
                SettlementExch,
                TransExch
            )
        RETURN
            BaseAmount + FinalExch
    ),
    CustTrans[TRANSDATE] &amp;lt;= AgedDebtDate
)&lt;/LI-CODE&gt;&lt;P&gt;&lt;BR /&gt;&lt;SPAN&gt;Settlement Amount&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;Settlement Amount :=
VAR AgedDebtDate = MAX ( 'Calendar'[Date] )
RETURN
CALCULATE (
    SUM ( CustSettlements[SETTLEAMOUNTMST] ),
    CustSettlements[TRANSDATE] &amp;lt;= AgedDebtDate
)&lt;/LI-CODE&gt;&lt;P&gt;&lt;BR /&gt;&lt;SPAN&gt;Final Balance&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;Balance GBP :=
ROUND (
    [Result Amount] - [Settlement Amount],
    2
)&lt;/LI-CODE&gt;&lt;P&gt;&lt;SPAN&gt;Why this works: &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;• The settlement exchange adjustment is evaluated within the transaction row context via the relationship&lt;BR /&gt;• No external measure is called inside the iterator&lt;BR /&gt;• Date filtering is applied correctly&lt;BR /&gt;• Eliminates repeated scans of CustSettlements&lt;BR /&gt;&lt;BR /&gt;This follows Microsoft guidance on context transition and iterator performance and should resolve the resource error.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;&lt;/STRONG&gt;&lt;/P&gt;</description>
    <pubDate>Fri, 13 Feb 2026 11:22:27 GMT</pubDate>
    <dc:creator>Olufemi7</dc:creator>
    <dc:date>2026-02-13T11:22:27Z</dc:date>
    <item>
      <title>DAX Query help</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-Query-help/m-p/5009635#M187123</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp; I have 2 tables in the model&lt;/P&gt;&lt;P&gt;1. CUSTTRANS&lt;/P&gt;&lt;P&gt;&amp;nbsp;RECID, ACCOUNTNUM, TANSDATE, AMOUNT, EXCHADJUSTMENT, TANSTYPE&lt;/P&gt;&lt;P&gt;2. CUSTSETTLEMENT&lt;/P&gt;&lt;P&gt;TRANSRECID, TRANSDATE, EXCHADJUSTMENT, SETTLEAMOUNT&lt;/P&gt;&lt;P&gt;3. Calendar&lt;/P&gt;&lt;P&gt;&amp;nbsp; Date, Year, Month...&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Relationship between these 2 tables is CUSTTRANS.RECID -&amp;gt; CUSTSETTLEMENT.TRANSRECID (one-to-many)&lt;/P&gt;&lt;P&gt;CUSTTRAMS.TRANSDATE -&amp;gt; Calendar.Date&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I need a DAX query between these two tables to get the balance&amp;nbsp; as of a date.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;EXCHADJUSTMENT in CUSTTRANSTABLE is not always populated. If it is zero and the CUSTSETTLEMENT.EXCHADJUSTMENT is not, I need to get the EXCHADJUSTMENT from CUSTSETTLEMENT else CUSTTRANS.EXCHADJUSTMENT&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;My DAX measures are as below&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Settlement Exch Adj =&lt;BR /&gt;var AgedDebtDate = MAX('Calendar'[Date])&lt;BR /&gt;var ExchAdj = CALCULATE(SUM(CustSettlements[EXChADJUSTMENT]),CustSettlements[TRANSDATE] &amp;lt;= AgedDebtDate)&lt;BR /&gt;RETURN ExchAdj&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Settlement Amount GBP =&lt;BR /&gt;var AgedDebtDate = MAX('Calendar'[Date])&lt;BR /&gt;var SettleAmount = CALCULATE(SUM(CustSettlements[SETTLEAMOUNTMST]),CustSettlements[TRANSDATE] &amp;lt;= AgedDebtDate) RETURN SettleAmount&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Result AmountMST =&lt;BR /&gt;var AgedDebtDate = max('Calendar'[Date])&lt;BR /&gt;var AmountMST = SUMX (&lt;BR /&gt;'CustTrans',&lt;BR /&gt;SWITCH (&lt;BR /&gt;TRUE (),&lt;BR /&gt;'CustTrans'[TRANSTYPE] = 9, 'CustTrans'[AMOUNTMST],&lt;BR /&gt;CustTrans[EXCHADJUSTMENT] = 0 &amp;amp;&amp;amp; [Settlement Exch Adj] &amp;lt;&amp;gt; 0,CustTrans[AMOUNTMST] - [Settlement Exch Adj],&lt;BR /&gt;CustTrans[AMOUNTMST] + CustTrans[EXCHADJUSTMENT]&lt;BR /&gt;)&lt;BR /&gt;)&lt;BR /&gt;RETURN AmountMST&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Balance GBP (On Settlements) = ROUND(CALCULATE([Result AmountMST] - [Settlement Amount GBP]),2)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The balance query is taking all the available resources and report showing error.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Could anyone help to resolve the query. I am not expert in DAX.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 12 Feb 2026 16:12:35 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-Query-help/m-p/5009635#M187123</guid>
      <dc:creator>krish42</dc:creator>
      <dc:date>2026-02-12T16:12:35Z</dc:date>
    </item>
    <item>
      <title>Re: DAX Query help</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-Query-help/m-p/5013431#M187133</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="722659" data-lia-user-login="krish42" class="lia-mention lia-mention-user"&gt;krish42&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;Please include, in a usable format, not an image, a small set of rows for each of the tables involved in your request and show the data model in a picture, so that we can import the tables in Power BI and reproduce the data model. The subset of rows you provide, even is just a subset of the original tables, must cover your issue or question completely. Alternatively, you can share your .pbix via some cloud service and paste the link here. Do not include sensitive information and do not include anything that is unrelated to the issue or question. Please show the expected outcome based on the sample data you provided and make sure, in case you show a Power BI visual, to clarify the columns used in the grouping sections of the visual.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Need help uploading data? &lt;A href="https://community.fabric.microsoft.com/t5/Community-Blog/How-to-provide-sample-data-in-the-Power-BI-Forum/ba-p/963216" target="_blank"&gt;click here &lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Want faster answers? &lt;A href="https://community.fabric.microsoft.com/t5/Desktop/How-to-Get-Your-Question-Answered-Quickly/m-p/1447523" target="_blank"&gt;click here &lt;/A&gt;&lt;/P&gt;
&lt;P&gt;If this helped, please consider giving kudos and mark as a solution&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;@me in replies or I'll lose your thread&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;Want to check your DAX skills? &lt;A href="https://www.linkedin.com/company/kubisco/" target="_blank"&gt;Answer my biweekly DAX challenges on the kubisco Linkedin page&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;Consider voting &lt;A href="https://community.fabric.microsoft.com/t5/Fabric-Ideas/Power-BI-Filter-Pane-as-an-icon-on-the-right-side-bar-in-on/idi-p/4728588" target="_blank"&gt;this Power BI idea&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;Francesco Bergamaschi&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;MBA, M.Eng, M.Econ, Professor of BI&lt;/P&gt;</description>
      <pubDate>Fri, 13 Feb 2026 07:10:38 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-Query-help/m-p/5013431#M187133</guid>
      <dc:creator>FBergamaschi</dc:creator>
      <dc:date>2026-02-13T07:10:38Z</dc:date>
    </item>
    <item>
      <title>Re: DAX Query help</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-Query-help/m-p/5013606#M187134</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="722659" data-lia-user-login="krish42" class="lia-mention lia-mention-user"&gt;krish42&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;Result AmountMST = &lt;BR /&gt;SUMX(&lt;BR /&gt;FILTER(CustTrans, CustTrans[TANSDATE] &amp;lt;= MAX('Calendar'[Date])),&lt;BR /&gt;VAR SettleAdj = RELATED(CustSettlements[EXCHADJUSTMENT])&lt;BR /&gt;RETURN&lt;BR /&gt;SWITCH(TRUE(),&lt;BR /&gt;CustTrans[TRANSTYPE] = 9, CustTrans[AMOUNTMST],&lt;BR /&gt;CustTrans[EXCHADJUSTMENT] = 0 &amp;amp;&amp;amp; SettleAdj &amp;lt;&amp;gt; 0, CustTrans[AMOUNTMST] - SettleAdj,&lt;BR /&gt;CustTrans[AMOUNTMST] + CustTrans[EXCHADJUSTMENT]&lt;BR /&gt;)&lt;BR /&gt;)&lt;/PRE&gt;
&lt;P&gt;&lt;BR /&gt;If this answer helped, please click &lt;span class="lia-unicode-emoji" title=":thumbs_up:"&gt;👍&lt;/span&gt; or Accept as Solution.&lt;BR /&gt;-Kedar&lt;BR /&gt;LinkedIn: &lt;A href="https://www.linkedin.com/in/kedar-pande" target="_blank"&gt;https://www.linkedin.com/in/kedar-pande&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 13 Feb 2026 07:41:17 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-Query-help/m-p/5013606#M187134</guid>
      <dc:creator>Kedar_Pande</dc:creator>
      <dc:date>2026-02-13T07:41:17Z</dc:date>
    </item>
    <item>
      <title>Re: DAX Query help</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-Query-help/m-p/5014185#M187135</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="722659" data-lia-user-login="krish42" class="lia-mention lia-mention-user"&gt;krish42&lt;/a&gt;&amp;nbsp; , &lt;BR /&gt;Thanks for reaching out to the Microsoft Fabric Community forum.&lt;BR /&gt;&lt;BR /&gt;The error is occurring because the DAX measure is forcing the engine to generate and process a very large intermediate result set during query execution, which exceeds the 15MB per-query data limit enforced by the Tabular engine.&lt;/P&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;As an immediate workaround, you can try reducing the dataset being evaluated before running the measure. For example:&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;Apply a date filter (e.g., specific month or year) in the report using slicers.&lt;/LI&gt;
&lt;LI&gt;Filter by a specific AccountNum or a smaller customer subset.&lt;/LI&gt;
&lt;LI&gt;Use report-level or page-level filters to limit the number of transactions loaded into the visual.&lt;/LI&gt;
&lt;LI&gt;Temporarily test the measure on a smaller date range to confirm it works correctly.&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;&lt;BR /&gt;&lt;BR /&gt;I hope this information helps. Please do let us know if you have any further queries.&lt;BR /&gt;Thank you&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 13 Feb 2026 09:36:24 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-Query-help/m-p/5014185#M187135</guid>
      <dc:creator>v-nmadadi-msft</dc:creator>
      <dc:date>2026-02-13T09:36:24Z</dc:date>
    </item>
    <item>
      <title>Re: DAX Query help</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-Query-help/m-p/5014769#M187136</link>
      <description>&lt;P&gt;Hello&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="722659" data-lia-user-login="krish42" class="lia-mention lia-mention-user"&gt;krish42&lt;/a&gt;,&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;The resource issue is caused by using [Settlement Exch Adj] inside SUMX over CustTrans.&lt;/P&gt;&lt;P&gt;When a measure is evaluated inside an iterator, DAX performs a context transition and may repeatedly scan the related table for every row. With large tables this can exhaust resources.&lt;/P&gt;&lt;P&gt;Microsoft documentation:&lt;/P&gt;&lt;P&gt;Row context and filter context in DAX&lt;BR /&gt;&lt;A href="https://learn.microsoft.com/dax/row-context-and-filter-context-in-dax" target="_new" rel="noopener"&gt;https://learn.microsoft.com/dax/row-context-and-filter-context-in-dax&lt;/A&gt;&lt;/P&gt;&lt;P&gt;CALCULATE function (context transition)&lt;BR /&gt;&lt;A href="https://learn.microsoft.com/dax/calculate-function-dax" target="_new" rel="noopener"&gt;https://learn.microsoft.com/dax/calculate-function-dax&lt;/A&gt;&lt;/P&gt;&lt;P&gt;SUMX function&lt;BR /&gt;&lt;A href="https://learn.microsoft.com/dax/sumx-function-dax" target="_new" rel="noopener"&gt;https://learn.microsoft.com/dax/sumx-function-dax&lt;/A&gt;&lt;/P&gt;&lt;P&gt;To resolve this, avoid calling settlement measures inside SUMX.&lt;BR /&gt;Instead, calculate the exchange adjustment per transaction using the relationship.&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Result Amount&lt;BR /&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;Result Amount :=
VAR AgedDebtDate = MAX ( 'Calendar'[Date] )
RETURN
CALCULATE (
    SUMX (
        CustTrans,
        VAR BaseAmount = CustTrans[AMOUNTMST]
        VAR TransExch = CustTrans[EXCHADJUSTMENT]
        VAR SettlementExch =
            CALCULATE (
                SUM ( CustSettlements[EXCHADJUSTMENT] ),
                CustSettlements[TRANSDATE] &amp;lt;= AgedDebtDate
            )
        VAR FinalExch =
            IF (
                TransExch = 0 &amp;amp;&amp;amp; SettlementExch &amp;lt;&amp;gt; 0,
                SettlementExch,
                TransExch
            )
        RETURN
            BaseAmount + FinalExch
    ),
    CustTrans[TRANSDATE] &amp;lt;= AgedDebtDate
)&lt;/LI-CODE&gt;&lt;P&gt;&lt;BR /&gt;&lt;SPAN&gt;Settlement Amount&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;Settlement Amount :=
VAR AgedDebtDate = MAX ( 'Calendar'[Date] )
RETURN
CALCULATE (
    SUM ( CustSettlements[SETTLEAMOUNTMST] ),
    CustSettlements[TRANSDATE] &amp;lt;= AgedDebtDate
)&lt;/LI-CODE&gt;&lt;P&gt;&lt;BR /&gt;&lt;SPAN&gt;Final Balance&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;Balance GBP :=
ROUND (
    [Result Amount] - [Settlement Amount],
    2
)&lt;/LI-CODE&gt;&lt;P&gt;&lt;SPAN&gt;Why this works: &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;• The settlement exchange adjustment is evaluated within the transaction row context via the relationship&lt;BR /&gt;• No external measure is called inside the iterator&lt;BR /&gt;• Date filtering is applied correctly&lt;BR /&gt;• Eliminates repeated scans of CustSettlements&lt;BR /&gt;&lt;BR /&gt;This follows Microsoft guidance on context transition and iterator performance and should resolve the resource error.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;&lt;/STRONG&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 13 Feb 2026 11:22:27 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-Query-help/m-p/5014769#M187136</guid>
      <dc:creator>Olufemi7</dc:creator>
      <dc:date>2026-02-13T11:22:27Z</dc:date>
    </item>
    <item>
      <title>Re: DAX Query help</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-Query-help/m-p/5015219#M187141</link>
      <description>&lt;P&gt;Thanks for the script.&lt;/P&gt;&lt;P&gt;Though not exactly what I want but has given me an idea and I fixed the measure with RELATEDTABLE() function. Its giving the result and the performance is also good&lt;/P&gt;</description>
      <pubDate>Fri, 13 Feb 2026 13:08:49 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-Query-help/m-p/5015219#M187141</guid>
      <dc:creator>krish42</dc:creator>
      <dc:date>2026-02-13T13:08:49Z</dc:date>
    </item>
    <item>
      <title>Re: DAX Query help</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-Query-help/m-p/5039804#M187164</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="722659" data-lia-user-login="krish42" class="lia-mention lia-mention-user"&gt;krish42&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;I wanted to check if you had the opportunity to review the information provided. Please feel free to contact us if you have any further questions.&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;Thank you.&lt;/P&gt;</description>
      <pubDate>Mon, 16 Feb 2026 10:58:39 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-Query-help/m-p/5039804#M187164</guid>
      <dc:creator>v-nmadadi-msft</dc:creator>
      <dc:date>2026-02-16T10:58:39Z</dc:date>
    </item>
    <item>
      <title>Re: DAX Query help</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-Query-help/m-p/5060725#M187194</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="722659" data-lia-user-login="krish42" class="lia-mention lia-mention-user"&gt;krish42&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;May I check if this issue has been resolved? If not, Please feel free to contact us if you have any further questions.&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;Thank you&lt;/P&gt;</description>
      <pubDate>Thu, 19 Feb 2026 11:23:46 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-Query-help/m-p/5060725#M187194</guid>
      <dc:creator>v-nmadadi-msft</dc:creator>
      <dc:date>2026-02-19T11:23:46Z</dc:date>
    </item>
  </channel>
</rss>

