<?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: field corresponding Date from another table earlier than selected date in different table in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/field-corresponding-Date-from-another-table-earlier-than/m-p/4680087#M179259</link>
    <description>&lt;P&gt;Hi&amp;nbsp;Eswar&amp;nbsp;,&lt;BR /&gt;May I ask of your issue has been resolved.If so,kindly share the solution or mark the answer that helped you.It will be halpful for the others in the community who may face similar issue.If not ,please follow with the below steps:&lt;BR /&gt;Please try this DAX for the calculated column in Table2:&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;CalculatedColumn =&lt;BR /&gt;VAR CurrentName = Table2[Name]&lt;BR /&gt;VAR CurrentEventDate = Table2[Event]&lt;BR /&gt;RETURN&lt;BR /&gt;MAXX(&lt;BR /&gt;TOPN(&lt;BR /&gt;1,&lt;BR /&gt;FILTER(&lt;BR /&gt;Table1,&lt;BR /&gt;Table1[Name] = CurrentName &amp;amp;&amp;amp;&lt;BR /&gt;Table1[Date] &amp;lt; CurrentEventDate&lt;BR /&gt;),&lt;BR /&gt;Table1[Date], DESC&lt;BR /&gt;),&lt;BR /&gt;Table1[Visit]&lt;BR /&gt;)&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;&lt;BR /&gt;Thank you.&lt;/P&gt;</description>
    <pubDate>Wed, 09 Jul 2025 09:10:59 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2025-07-09T09:10:59Z</dc:date>
    <item>
      <title>field corresponding Date from another table earlier than selected date in different table</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/field-corresponding-Date-from-another-table-earlier-than/m-p/4604634#M176277</link>
      <description>&lt;P&gt;Hi,&lt;BR /&gt;I have two tables as below. I want a calculated column displaying the visit field in Table 2 based on date condition.&lt;BR /&gt;Condition: The Table1 (date) eariler than the Table2 (Date) by name. Please help me.&lt;/P&gt;&lt;P&gt;Table 1&lt;/P&gt;&lt;TABLE&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;Name&lt;/TD&gt;&lt;TD&gt;Visit&lt;/TD&gt;&lt;TD&gt;Date&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;A&lt;/TD&gt;&lt;TD&gt;W1&lt;/TD&gt;&lt;TD&gt;1-Jan-25&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;A&lt;/TD&gt;&lt;TD&gt;&lt;STRONG&gt;W2&lt;/STRONG&gt;&lt;/TD&gt;&lt;TD&gt;&lt;STRONG&gt;10-Jan-25&lt;/STRONG&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;A&lt;/TD&gt;&lt;TD&gt;W3&lt;/TD&gt;&lt;TD&gt;17-Jan-25&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;B&lt;/TD&gt;&lt;TD&gt;W1&lt;/TD&gt;&lt;TD&gt;3-Jan-25&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;B&lt;/TD&gt;&lt;TD&gt;W2&lt;/TD&gt;&lt;TD&gt;8-Jan-25&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;B&lt;/TD&gt;&lt;TD&gt;W3&lt;/TD&gt;&lt;TD&gt;15-Jan-25&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;C&lt;/TD&gt;&lt;TD&gt;W1&lt;/TD&gt;&lt;TD&gt;9-Jan-25&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;C&lt;/TD&gt;&lt;TD&gt;W2&lt;/TD&gt;&lt;TD&gt;16-Jan-25&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;C&lt;/TD&gt;&lt;TD&gt;W3&lt;/TD&gt;&lt;TD&gt;25-Jan-25&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;Table 2&lt;/P&gt;&lt;TABLE&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;Name&lt;/TD&gt;&lt;TD&gt;Event&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;A&lt;/TD&gt;&lt;TD&gt;15-Jan-25&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;B&lt;/TD&gt;&lt;TD&gt;7-Jan-25&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;C&lt;/TD&gt;&lt;TD&gt;30-Jan-25&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;Output with calculated column in Table 2 is expected as&lt;/P&gt;&lt;TABLE&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;Name&lt;/TD&gt;&lt;TD&gt;Event&lt;/TD&gt;&lt;TD&gt;Calculated column&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;A&lt;/TD&gt;&lt;TD&gt;15-Jan-25&lt;/TD&gt;&lt;TD&gt;&lt;STRONG&gt;W2&lt;/STRONG&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;B&lt;/TD&gt;&lt;TD&gt;7-Jan-25&lt;/TD&gt;&lt;TD&gt;W1&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;C&lt;/TD&gt;&lt;TD&gt;30-Jan-25&lt;/TD&gt;&lt;TD&gt;W3&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;</description>
      <pubDate>Tue, 11 Mar 2025 07:29:37 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/field-corresponding-Date-from-another-table-earlier-than/m-p/4604634#M176277</guid>
      <dc:creator>Eswar</dc:creator>
      <dc:date>2025-03-11T07:29:37Z</dc:date>
    </item>
    <item>
      <title>Re: field corresponding Date from another table earlier than selected date in different table</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/field-corresponding-Date-from-another-table-earlier-than/m-p/4604676#M176278</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="1236582" data-lia-user-login="Eswar" class="lia-mention lia-mention-user"&gt;Eswar&lt;/a&gt;&amp;nbsp;Create a calculated column in Table 2 using the following DAX formula:&lt;/P&gt;
&lt;P&gt;dax&lt;BR /&gt;CalculatedColumn = &lt;BR /&gt;VAR CurrentName = Table2[Name]&lt;BR /&gt;VAR CurrentEventDate = Table2[Event]&lt;BR /&gt;RETURN&lt;BR /&gt;MAXX(&lt;BR /&gt;FILTER(&lt;BR /&gt;Table1,&lt;BR /&gt;Table1[Name] = CurrentName &amp;amp;&amp;amp; Table1[Date] &amp;lt; CurrentEventDate&lt;BR /&gt;),&lt;BR /&gt;Table1[Visit]&lt;BR /&gt;)&lt;/P&gt;</description>
      <pubDate>Tue, 11 Mar 2025 08:07:18 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/field-corresponding-Date-from-another-table-earlier-than/m-p/4604676#M176278</guid>
      <dc:creator>bhanu_gautam</dc:creator>
      <dc:date>2025-03-11T08:07:18Z</dc:date>
    </item>
    <item>
      <title>Re: field corresponding Date from another table earlier than selected date in different table</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/field-corresponding-Date-from-another-table-earlier-than/m-p/4604912#M176283</link>
      <description>&lt;P&gt;Hi Bhanu, Thank you. I asked a partial question. In the Table 2, if multiple records by the same name.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Table1 Remains same.&lt;BR /&gt;Table 2&lt;/P&gt;&lt;TABLE&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;Name&lt;/TD&gt;&lt;TD&gt;RecordPosition&lt;/TD&gt;&lt;TD&gt;Event&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;A&lt;/TD&gt;&lt;TD&gt;1&lt;/TD&gt;&lt;TD&gt;15-Jan-25&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;B&lt;/TD&gt;&lt;TD&gt;1&lt;/TD&gt;&lt;TD&gt;7-Jan-25&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;C&lt;/TD&gt;&lt;TD&gt;1&lt;/TD&gt;&lt;TD&gt;30-Jan-25&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;A&lt;/TD&gt;&lt;TD&gt;2&lt;/TD&gt;&lt;TD&gt;9-Jan-25&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;A&lt;/TD&gt;&lt;TD&gt;3&lt;/TD&gt;&lt;TD&gt;23-Jan-25&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;B&lt;/TD&gt;&lt;TD&gt;2&lt;/TD&gt;&lt;TD&gt;14-Jan-25&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;B&lt;/TD&gt;&lt;TD&gt;3&lt;/TD&gt;&lt;TD&gt;13-Jan-25&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;C&lt;/TD&gt;&lt;TD&gt;2&lt;/TD&gt;&lt;TD&gt;10-jan-25&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;C&lt;/TD&gt;&lt;TD&gt;3&lt;/TD&gt;&lt;TD&gt;18-Jan-25&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;The output expected is&amp;nbsp;&lt;/P&gt;&lt;TABLE&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;Name&lt;/TD&gt;&lt;TD&gt;RecordPosition&lt;/TD&gt;&lt;TD&gt;Event&lt;/TD&gt;&lt;TD&gt;Calculated column&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;A&lt;/TD&gt;&lt;TD&gt;1&lt;/TD&gt;&lt;TD&gt;15-Jan-25&lt;/TD&gt;&lt;TD&gt;W2&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;B&lt;/TD&gt;&lt;TD&gt;1&lt;/TD&gt;&lt;TD&gt;7-Jan-25&lt;/TD&gt;&lt;TD&gt;W1&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;C&lt;/TD&gt;&lt;TD&gt;1&lt;/TD&gt;&lt;TD&gt;30-Jan-25&lt;/TD&gt;&lt;TD&gt;W3&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;A&lt;/TD&gt;&lt;TD&gt;2&lt;/TD&gt;&lt;TD&gt;9-Jan-25&lt;/TD&gt;&lt;TD&gt;W1&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;A&lt;/TD&gt;&lt;TD&gt;3&lt;/TD&gt;&lt;TD&gt;23-Jan-25&lt;/TD&gt;&lt;TD&gt;W3&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;B&lt;/TD&gt;&lt;TD&gt;2&lt;/TD&gt;&lt;TD&gt;17-Jan-25&lt;/TD&gt;&lt;TD&gt;W3&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;B&lt;/TD&gt;&lt;TD&gt;3&lt;/TD&gt;&lt;TD&gt;13-Jan-25&lt;/TD&gt;&lt;TD&gt;W1&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;C&lt;/TD&gt;&lt;TD&gt;2&lt;/TD&gt;&lt;TD&gt;10-jan-25&lt;/TD&gt;&lt;TD&gt;W1&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;C&lt;/TD&gt;&lt;TD&gt;3&lt;/TD&gt;&lt;TD&gt;18-Jan-25&lt;/TD&gt;&lt;TD&gt;W2&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;</description>
      <pubDate>Tue, 11 Mar 2025 10:16:57 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/field-corresponding-Date-from-another-table-earlier-than/m-p/4604912#M176283</guid>
      <dc:creator>Eswar</dc:creator>
      <dc:date>2025-03-11T10:16:57Z</dc:date>
    </item>
    <item>
      <title>Re: field corresponding Date from another table earlier than selected date in different table</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/field-corresponding-Date-from-another-table-earlier-than/m-p/4605059#M176284</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="1236582" data-lia-user-login="Eswar" class="lia-mention lia-mention-user"&gt;Eswar&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;To handle multiple records for the same name in Table 2, you can modify the DAX formula slightly to account for each record's position while keeping the logic for matching dates and visits intact.&lt;/P&gt;
&lt;P&gt;Here is the DAX formula for the Calculated Column in Table 2:&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;CalculatedColumn =
VAR CurrentName = Table2[Name]
VAR CurrentEventDate = Table2[Event]
VAR CurrentPosition = Table2[RecordPosition]
RETURN
MAXX(
FILTER(
Table1,
Table1[Name] = CurrentName &amp;amp;&amp;amp;
Table1[Date] &amp;lt; CurrentEventDate
),
Table1[Visit]
)&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;EM&gt;&lt;STRONG&gt;Please mark this post as solution if it helps you. Appreciate Kudos.&lt;/STRONG&gt;&lt;/EM&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 11 Mar 2025 11:44:23 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/field-corresponding-Date-from-another-table-earlier-than/m-p/4605059#M176284</guid>
      <dc:creator>FarhanJeelani</dc:creator>
      <dc:date>2025-03-11T11:44:23Z</dc:date>
    </item>
    <item>
      <title>Re: field corresponding Date from another table earlier than selected date in different table</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/field-corresponding-Date-from-another-table-earlier-than/m-p/4606373#M176332</link>
      <description>&lt;P&gt;Thank you, Farhan.&lt;BR /&gt;the provided DAX gives the out put 'visit' corresponding to min date by 'Name'.&amp;nbsp;&lt;BR /&gt;I will explain again.&amp;nbsp;&lt;BR /&gt;&lt;SPAN&gt;for example, Table 2 date 30-Jan-25 for A, all prior dates in Table 1 are (1-jan-25, 10-Jan-25 and 17-Jan-15). The first earlier date is&amp;nbsp; 17-jan-25. The output in calculated column should be 'W3'.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;The above provied DAX shows correspondong to lowest date 1-Jan-25, W1.&lt;/P&gt;</description>
      <pubDate>Wed, 12 Mar 2025 07:13:59 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/field-corresponding-Date-from-another-table-earlier-than/m-p/4606373#M176332</guid>
      <dc:creator>Eswar</dc:creator>
      <dc:date>2025-03-12T07:13:59Z</dc:date>
    </item>
    <item>
      <title>Re: field corresponding Date from another table earlier than selected date in different table</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/field-corresponding-Date-from-another-table-earlier-than/m-p/4609727#M176461</link>
      <description>&lt;P&gt;Hi all,&lt;/P&gt;&lt;P&gt;Would you please help me this case?&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;for example, Table 2 date 30-Jan-25 (looked up date) for A, all prior dates in Table 1 for A are (1-jan-25, 10-Jan-25 and 17-Jan-15). The first earlier date to looked up date is&amp;nbsp; 17-jan-25. The output in calculated column expected is 'W3'.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;The above provied DAX shows correspondong to lowest date 1-Jan-25, W1.&lt;/P&gt;</description>
      <pubDate>Fri, 14 Mar 2025 06:48:08 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/field-corresponding-Date-from-another-table-earlier-than/m-p/4609727#M176461</guid>
      <dc:creator>Eswar</dc:creator>
      <dc:date>2025-03-14T06:48:08Z</dc:date>
    </item>
    <item>
      <title>Re: field corresponding Date from another table earlier than selected date in different table</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/field-corresponding-Date-from-another-table-earlier-than/m-p/4674001#M179007</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="1236582" data-lia-user-login="Eswar" class="lia-mention lia-mention-user"&gt;Eswar&lt;/a&gt;&amp;nbsp;,&lt;BR /&gt;Thank you&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="833383" data-lia-user-login="FarhanJeelani" class="lia-mention lia-mention-user"&gt;FarhanJeelani&lt;/a&gt;&amp;nbsp; and&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="625922" data-lia-user-login="bhanu_gautam" class="lia-mention lia-mention-user"&gt;bhanu_gautam&lt;/a&gt;&amp;nbsp;for the helpful insights!&lt;BR /&gt;Could you please confirm if the issue has been resolved on your end? If a solution has been found, it would be greatly appreciated if you could share your insights with the community. This would be helpful for other members who may encounter similar issues.&lt;BR /&gt;Thank you for your understanding and assistance.&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;Pallavi.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 30 Apr 2025 06:43:29 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/field-corresponding-Date-from-another-table-earlier-than/m-p/4674001#M179007</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2025-04-30T06:43:29Z</dc:date>
    </item>
    <item>
      <title>Re: field corresponding Date from another table earlier than selected date in different table</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/field-corresponding-Date-from-another-table-earlier-than/m-p/4680087#M179259</link>
      <description>&lt;P&gt;Hi&amp;nbsp;Eswar&amp;nbsp;,&lt;BR /&gt;May I ask of your issue has been resolved.If so,kindly share the solution or mark the answer that helped you.It will be halpful for the others in the community who may face similar issue.If not ,please follow with the below steps:&lt;BR /&gt;Please try this DAX for the calculated column in Table2:&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;CalculatedColumn =&lt;BR /&gt;VAR CurrentName = Table2[Name]&lt;BR /&gt;VAR CurrentEventDate = Table2[Event]&lt;BR /&gt;RETURN&lt;BR /&gt;MAXX(&lt;BR /&gt;TOPN(&lt;BR /&gt;1,&lt;BR /&gt;FILTER(&lt;BR /&gt;Table1,&lt;BR /&gt;Table1[Name] = CurrentName &amp;amp;&amp;amp;&lt;BR /&gt;Table1[Date] &amp;lt; CurrentEventDate&lt;BR /&gt;),&lt;BR /&gt;Table1[Date], DESC&lt;BR /&gt;),&lt;BR /&gt;Table1[Visit]&lt;BR /&gt;)&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;&lt;BR /&gt;Thank you.&lt;/P&gt;</description>
      <pubDate>Wed, 09 Jul 2025 09:10:59 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/field-corresponding-Date-from-another-table-earlier-than/m-p/4680087#M179259</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2025-07-09T09:10:59Z</dc:date>
    </item>
    <item>
      <title>Re: field corresponding Date from another table earlier than selected date in different table</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/field-corresponding-Date-from-another-table-earlier-than/m-p/4693571#M179739</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="1236582" data-lia-user-login="Eswar" class="lia-mention lia-mention-user"&gt;Eswar&lt;/a&gt;&amp;nbsp;,&lt;BR /&gt;we haven't heard back from you regarding our last response and wanted to check if your issue has been resolved.&lt;BR /&gt;If our response addressed your query, please mark it as Accept Answer and click Yes if you found it helpful.&lt;BR /&gt;If you have any further questions, feel free to reach out.&lt;BR /&gt;Thank you for being a part of the Microsoft Fabric Community Forum!&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 15 May 2025 07:30:05 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/field-corresponding-Date-from-another-table-earlier-than/m-p/4693571#M179739</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2025-05-15T07:30:05Z</dc:date>
    </item>
  </channel>
</rss>

