<?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: Match 2 Tables using Measure (with conditions) in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Match-2-Tables-using-Measure-with-conditions/m-p/4731924#M181263</link>
    <description>&lt;P&gt;Try and see if this works:&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;IsBankMatched =
VAR _BankIn = SELECTEDVALUE(Bank[In])
VAR _Date = SELECTEDVALUE(Bank[Date])

VAR GLTotal = CALCULATE( SUM(GL[Debit]),
                 FILTER( ALL(GL), GL[Clean Ref Numeric] = _BankIn &amp;amp;&amp;amp; GL[Date] = _Date)
              )
-- RETURN IF( NOT ISBLANK(_BankIn) &amp;amp;&amp;amp; NOT ISBLANK(_Date) &amp;amp;&amp;amp; ABS(GLTotal - _BankIn) &amp;lt; 0.01,
-- RETURN IF ( HASONEVALUE ( Bank[In]) &amp;amp;&amp;amp; HASONEVALUE(Bank[Date]) &amp;amp;&amp;amp; ABS(GLTotal - _BankIn) &amp;lt; 0.01,
RETURN IF(   ABS(GLTotal - _BankIn) &amp;lt; 0.01,
            "Matched", "Not Matched"
       )&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;ALL(GL) or ALLSELECTED(GL) based on your needs, if the above formula works!&lt;/P&gt;</description>
    <pubDate>Fri, 13 Jun 2025 21:08:05 GMT</pubDate>
    <dc:creator>sevenhills</dc:creator>
    <dc:date>2025-06-13T21:08:05Z</dc:date>
    <item>
      <title>Match 2 Tables using Measure (with conditions)</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Match-2-Tables-using-Measure-with-conditions/m-p/4726476#M181051</link>
      <description>&lt;P&gt;Hi, Expert,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I wish to create a measure in the Power BI to match the following condition but unable to get the correct matching:&lt;/P&gt;&lt;P&gt;I have 2 tables:&amp;nbsp; Bank and GL&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;In the bank table, there is a deposit on 1/4/2025 amounted to RM410 = column Bank[In]&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;In the GL table, there are 2 transactions on 1/4/2025, one RM214.80, another one RM195.20 which make up of the total of RM410 and these 2 transactions both referenced by:&lt;BR /&gt;a) 410.00 (numeric) in the column GL[Clean Ref Numeric]&lt;BR /&gt;b) 214.80 (one row) and 195.20 (another row) in the column GL[Debit]&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;My Goal is:&lt;BR /&gt;Create a DAX measure that matches Bank deposits (Bank[In]) to the grouped GL entries based on total amount (GL[Debit]) and reference number in GL[Clean Ref Numeric].&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;I created the below DAX but still unable to match it correctly:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;IsBankMatched =&lt;BR /&gt;VAR SelectedBankIn = SELECTEDVALUE(Bank[In])&lt;BR /&gt;VAR GLTotal = CALCULATE(SUM(GL[Debit]),&lt;BR /&gt;FILTER(GL,GL[Clean Ref Numeric] = SelectedBankIn))&lt;BR /&gt;RETURN IF(SelectedBankIn = GLTotal, "Matched", "Not Matched")&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Appreciate for the advices.&lt;/P&gt;</description>
      <pubDate>Tue, 10 Jun 2025 04:51:20 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Match-2-Tables-using-Measure-with-conditions/m-p/4726476#M181051</guid>
      <dc:creator>wongts_nms</dc:creator>
      <dc:date>2025-06-10T04:51:20Z</dc:date>
    </item>
    <item>
      <title>Re: Match 2 Tables using Measure (with conditions)</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Match-2-Tables-using-Measure-with-conditions/m-p/4726648#M181057</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="1287634" data-lia-user-login="wongts_nms" class="lia-mention lia-mention-user"&gt;wongts_nms&lt;/a&gt;&amp;nbsp; Hi! Try with:&lt;/P&gt;
&lt;P&gt;IsBankMatched = &lt;BR /&gt;VAR SelectedBankIn = SELECTEDVALUE(Bank[In])&lt;BR /&gt;VAR GLTotal = &lt;BR /&gt;CALCULATE(&lt;BR /&gt;SUM(GL[Debit]),&lt;BR /&gt;FILTER(&lt;BR /&gt;GL,&lt;BR /&gt;GL[Clean Ref Numeric] = SelectedBankIn&lt;BR /&gt;)&lt;BR /&gt;)&lt;BR /&gt;RETURN&lt;BR /&gt;IF(&lt;BR /&gt;NOT(ISBLANK(SelectedBankIn)) &amp;amp;&amp;amp;&lt;BR /&gt;SelectedBankIn = GLTotal,&lt;BR /&gt;"Matched",&lt;BR /&gt;"Not Matched"&lt;BR /&gt;)&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If your model doesn’t have a relationship between Bank and GL:&lt;/P&gt;
&lt;P&gt;IsBankMatched = &lt;BR /&gt;VAR SelectedBankIn = SELECTEDVALUE(Bank[In])&lt;BR /&gt;VAR GLTotal = &lt;BR /&gt;CALCULATE(&lt;BR /&gt;SUM(GL[Debit]),&lt;BR /&gt;TREATAS(&lt;BR /&gt;{ SelectedBankIn },&lt;BR /&gt;GL[Clean Ref Numeric]&lt;BR /&gt;)&lt;BR /&gt;)&lt;BR /&gt;RETURN&lt;BR /&gt;IF(&lt;BR /&gt;NOT(ISBLANK(SelectedBankIn)) &amp;amp;&amp;amp;&lt;BR /&gt;SelectedBankIn = GLTotal,&lt;BR /&gt;"Matched",&lt;BR /&gt;"Not Matched"&lt;BR /&gt;)&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;BBF&lt;/P&gt;
&lt;DIV style="font-family: Segoe UI, sans-serif; font-size: 14px; line-height: 1.2;"&gt;&lt;BR /&gt;&lt;span class="lia-unicode-emoji" title=":light_bulb:"&gt;💡&lt;/span&gt; &lt;STRONG&gt;Did I answer your question?&lt;/STRONG&gt; Mark my post as a solution! &lt;BR /&gt;&lt;BR /&gt;&lt;span class="lia-unicode-emoji" title=":thumbs_up:"&gt;👍&lt;/span&gt; Kudos are appreciated &lt;BR /&gt;&lt;BR /&gt;&lt;STRONG&gt;&lt;span class="lia-unicode-emoji" title=":fire:"&gt;🔥&lt;/span&gt; Proud to be a Super User!&lt;/STRONG&gt; &lt;BR /&gt;&lt;BR /&gt;&lt;img /&gt;&lt;/DIV&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 10 Jun 2025 07:06:02 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Match-2-Tables-using-Measure-with-conditions/m-p/4726648#M181057</guid>
      <dc:creator>BeaBF</dc:creator>
      <dc:date>2025-06-10T07:06:02Z</dc:date>
    </item>
    <item>
      <title>Re: Match 2 Tables using Measure (with conditions)</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Match-2-Tables-using-Measure-with-conditions/m-p/4726732#M181058</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="1287634" data-lia-user-login="wongts_nms" class="lia-mention lia-mention-user"&gt;wongts_nms&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;You want to match a deposit in your Bank table to grouped transactions in your GL table based on amount and reference number. The reply you received gives you two DAX solutions: one for models where Bank and GL tables have a direct relationship, and another using TREATAS for when there is no relationship.&lt;/P&gt;&lt;P&gt;Key points:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;If you have a relationship on the reference column, use the first DAX formula. It checks if the selected BankIn value matches the sum of Debit in GL for the same reference. If it matches, it returns "Matched", otherwise "Not Matched".&lt;/LI&gt;&lt;LI&gt;If there is no relationship, use the second DAX formula with TREATAS. This virtually maps the reference column and applies the same logic.&lt;/LI&gt;&lt;LI&gt;Make sure the columns you match on (BankIn and GLClean Ref Numeric) have compatible data types and matching values.&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;If the measure is not working as expected, double-check for data type mismatches, formatting issues, or context problems in your visual.&lt;/P&gt;&lt;P&gt;If your scenario is more complex, or you need to match on multiple fields or with tolerances, share more details and I can help you adjust the DAX. Let me know if you need an example with your sample data.&lt;BR /&gt;&lt;FONT size="1 2 3 4 5 6 7"&gt;&lt;SPAN&gt;translation and formatting supported by AI&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 01 Jul 2025 08:52:52 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Match-2-Tables-using-Measure-with-conditions/m-p/4726732#M181058</guid>
      <dc:creator>burakkaragoz</dc:creator>
      <dc:date>2025-07-01T08:52:52Z</dc:date>
    </item>
    <item>
      <title>Re: Match 2 Tables using Measure (with conditions)</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Match-2-Tables-using-Measure-with-conditions/m-p/4727897#M181117</link>
      <description>&lt;P&gt;Hello, BBF,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you so much for your prompt advices.&amp;nbsp; I have tried the both solutions but still unable to match the&amp;nbsp;&lt;SPAN&gt;Bank deposits (Bank[In]) to the grouped GL entries based on total amount (GL[Debit]) and reference number in GL[Clean Ref Numeric].&amp;nbsp; Below are the sample data:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;GL Table&lt;/SPAN&gt;&lt;/P&gt;&lt;TABLE&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;Date&lt;/TD&gt;&lt;TD&gt;Debit&lt;/TD&gt;&lt;TD&gt;Clean Ref Numeric&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;02/04/2025&lt;/TD&gt;&lt;TD&gt;1,144.57&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 1,580.00&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;02/04/2025&lt;/TD&gt;&lt;TD&gt;379.50&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 1,580.00&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;02/04/2025&lt;/TD&gt;&lt;TD&gt;55.93&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 1,580.00&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;TABLE&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;Date&lt;/TD&gt;&lt;TD&gt;Debit&lt;/TD&gt;&lt;TD&gt;Clean Ref Numeric&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;01/04/2025&lt;/TD&gt;&lt;TD&gt;214.80&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 410.00&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;01/04/2025&lt;/TD&gt;&lt;TD&gt;195.20&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 410.00&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Bank Table&lt;/P&gt;&lt;TABLE&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;Date&amp;nbsp;&lt;/TD&gt;&lt;TD&gt;In&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;01/04/2025&lt;/TD&gt;&lt;TD&gt;410.00&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;02/04/2025&lt;/TD&gt;&lt;TD&gt;1,580.00&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Appreciate any examples or advice!&lt;/P&gt;</description>
      <pubDate>Wed, 11 Jun 2025 02:43:30 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Match-2-Tables-using-Measure-with-conditions/m-p/4727897#M181117</guid>
      <dc:creator>wongts_nms</dc:creator>
      <dc:date>2025-06-11T02:43:30Z</dc:date>
    </item>
    <item>
      <title>Re: Match 2 Tables using Measure (with conditions)</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Match-2-Tables-using-Measure-with-conditions/m-p/4728137#M181122</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="1287634" data-lia-user-login="wongts_nms" class="lia-mention lia-mention-user"&gt;wongts_nms&lt;/a&gt;&amp;nbsp;try with:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;IsBankMatched =&lt;BR /&gt;VAR SelectedBankIn = SELECTEDVALUE(Bank[In])&lt;BR /&gt;VAR GLTotal =&lt;BR /&gt;CALCULATE(&lt;BR /&gt;SUM(GL[Debit]),&lt;BR /&gt;FILTER(&lt;BR /&gt;GL,&lt;BR /&gt;GL[Clean Ref Numeric] = SelectedBankIn&lt;BR /&gt;)&lt;BR /&gt;)&lt;BR /&gt;RETURN&lt;BR /&gt;IF(&lt;BR /&gt;NOT ISBLANK(SelectedBankIn)&lt;BR /&gt;&amp;amp;&amp;amp; ABS(GLTotal - SelectedBankIn) &amp;lt; 0.01,&lt;BR /&gt;"Matched",&lt;BR /&gt;"Not Matched"&lt;BR /&gt;)&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;BBF&lt;/P&gt;
&lt;DIV style="font-family: Segoe UI, sans-serif; font-size: 14px; line-height: 1.2;"&gt;&lt;BR /&gt;&lt;span class="lia-unicode-emoji" title=":light_bulb:"&gt;💡&lt;/span&gt; &lt;STRONG&gt;Did I answer your question?&lt;/STRONG&gt; Mark my post as a solution! &lt;BR /&gt;&lt;BR /&gt;&lt;span class="lia-unicode-emoji" title=":thumbs_up:"&gt;👍&lt;/span&gt; Kudos are appreciated &lt;BR /&gt;&lt;BR /&gt;&lt;STRONG&gt;&lt;span class="lia-unicode-emoji" title=":fire:"&gt;🔥&lt;/span&gt; Proud to be a Super User!&lt;/STRONG&gt; &lt;BR /&gt;&lt;BR /&gt;&lt;img /&gt; &lt;/DIV&gt;</description>
      <pubDate>Wed, 11 Jun 2025 07:04:38 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Match-2-Tables-using-Measure-with-conditions/m-p/4728137#M181122</guid>
      <dc:creator>BeaBF</dc:creator>
      <dc:date>2025-06-11T07:04:38Z</dc:date>
    </item>
    <item>
      <title>Re: Match 2 Tables using Measure (with conditions)</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Match-2-Tables-using-Measure-with-conditions/m-p/4731924#M181263</link>
      <description>&lt;P&gt;Try and see if this works:&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;IsBankMatched =
VAR _BankIn = SELECTEDVALUE(Bank[In])
VAR _Date = SELECTEDVALUE(Bank[Date])

VAR GLTotal = CALCULATE( SUM(GL[Debit]),
                 FILTER( ALL(GL), GL[Clean Ref Numeric] = _BankIn &amp;amp;&amp;amp; GL[Date] = _Date)
              )
-- RETURN IF( NOT ISBLANK(_BankIn) &amp;amp;&amp;amp; NOT ISBLANK(_Date) &amp;amp;&amp;amp; ABS(GLTotal - _BankIn) &amp;lt; 0.01,
-- RETURN IF ( HASONEVALUE ( Bank[In]) &amp;amp;&amp;amp; HASONEVALUE(Bank[Date]) &amp;amp;&amp;amp; ABS(GLTotal - _BankIn) &amp;lt; 0.01,
RETURN IF(   ABS(GLTotal - _BankIn) &amp;lt; 0.01,
            "Matched", "Not Matched"
       )&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;ALL(GL) or ALLSELECTED(GL) based on your needs, if the above formula works!&lt;/P&gt;</description>
      <pubDate>Fri, 13 Jun 2025 21:08:05 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Match-2-Tables-using-Measure-with-conditions/m-p/4731924#M181263</guid>
      <dc:creator>sevenhills</dc:creator>
      <dc:date>2025-06-13T21:08:05Z</dc:date>
    </item>
    <item>
      <title>Re: Match 2 Tables using Measure (with conditions)</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Match-2-Tables-using-Measure-with-conditions/m-p/4733043#M181299</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="1287634" data-lia-user-login="wongts_nms" class="lia-mention lia-mention-user"&gt;wongts_nms&lt;/a&gt;&amp;nbsp;,&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;P&gt;We would like to follow up to see if the solution provided by the super user resolved your issue. Please let us know if you need any further assistance.&lt;BR /&gt;If our super user response resolved your issue, please mark it as "Accept as solution" and click "Yes" if you found it helpful.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Regards,&lt;BR /&gt;Chaithra E.&lt;/P&gt;
&lt;P&gt;&lt;LI-WRAPPER&gt;&lt;/LI-WRAPPER&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 16 Jun 2025 07:30:30 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Match-2-Tables-using-Measure-with-conditions/m-p/4733043#M181299</guid>
      <dc:creator>v-echaithra</dc:creator>
      <dc:date>2025-06-16T07:30:30Z</dc:date>
    </item>
    <item>
      <title>Re: Match 2 Tables using Measure (with conditions)</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Match-2-Tables-using-Measure-with-conditions/m-p/4737043#M181434</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="1287634" data-lia-user-login="wongts_nms" class="lia-mention lia-mention-user"&gt;wongts_nms&lt;/a&gt;&amp;nbsp;,&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;P&gt;May I ask if you have gotten this issue resolved?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If it is solved, please mark the helpful reply or share your solution and accept it as solution, it will be helpful for other members of the community who have similar problems as yours to solve it faster.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Regards,&lt;BR /&gt;Chaithra.&lt;/P&gt;
&lt;P&gt;&lt;LI-WRAPPER&gt;&lt;/LI-WRAPPER&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 19 Jun 2025 07:29:48 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Match-2-Tables-using-Measure-with-conditions/m-p/4737043#M181434</guid>
      <dc:creator>v-echaithra</dc:creator>
      <dc:date>2025-06-19T07:29:48Z</dc:date>
    </item>
    <item>
      <title>Re: Match 2 Tables using Measure (with conditions)</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Match-2-Tables-using-Measure-with-conditions/m-p/4740891#M181578</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="1287634" data-lia-user-login="wongts_nms" class="lia-mention lia-mention-user"&gt;wongts_nms&lt;/a&gt;&amp;nbsp;,&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;P&gt;As we haven’t heard back from you, we wanted to kindly follow up to check if the solution provided for the issue worked? or Let us know if you need any further assistance?&lt;BR /&gt;If our response addressed, please mark it as Accept as solution and click Yes if you found it helpful.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Regards,&lt;BR /&gt;Chaithra.&lt;/P&gt;
&lt;P&gt;&lt;LI-WRAPPER&gt;&lt;/LI-WRAPPER&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 23 Jun 2025 13:27:01 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Match-2-Tables-using-Measure-with-conditions/m-p/4740891#M181578</guid>
      <dc:creator>v-echaithra</dc:creator>
      <dc:date>2025-06-23T13:27:01Z</dc:date>
    </item>
  </channel>
</rss>

