<?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: Dynamic date substitution in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dynamic-date-substitution/m-p/4758563#M182219</link>
    <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="1261878" data-lia-user-login="dimotori" class="lia-mention lia-mention-user"&gt;dimotori&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;I’ve included the measure as you recommended and attached the file. Please review it when you have a chance and let me know if everything is correct.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Hope this is helpful.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Thu, 10 Jul 2025 07:24:29 GMT</pubDate>
    <dc:creator>V-yubandi-msft</dc:creator>
    <dc:date>2025-07-10T07:24:29Z</dc:date>
    <item>
      <title>Dynamic date substitution</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dynamic-date-substitution/m-p/4731791#M181260</link>
      <description>&lt;P&gt;Hi, implementing write back with PowerApps have two tables one with order number, amount and requested delivery dates (table 1) another with order number and confirmed delivery date (table 2).&amp;nbsp; Table1 is in import mode, Table2 is direct query mode (data is being populated through PowerApp).&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;both tables are connected to the same calendar table&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Trying to write a measure that would "use" date in table 2 if available for a&amp;nbsp;delivery amount from table 1 for a matrix visual in PBI.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;any successful experience implementing something similar&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 13 Jun 2025 16:03:44 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dynamic-date-substitution/m-p/4731791#M181260</guid>
      <dc:creator>dimotori</dc:creator>
      <dc:date>2025-06-13T16:03:44Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamic date substitution</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dynamic-date-substitution/m-p/4731825#M181261</link>
      <description>&lt;P&gt;Hey&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="1261878" data-lia-user-login="dimotori" class="lia-mention lia-mention-user"&gt;dimotori&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;Sure! Here's a completely rewritten, original explanation tailored to your use case. It avoids any direct reuse of phrasing and presents the solution clearly.&lt;/P&gt;&lt;H2&gt;&lt;FONT color="#000000"&gt;&lt;STRONG&gt;Overview&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/H2&gt;&lt;P&gt;You're working with two tables in Power BI:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;&lt;P&gt;&lt;STRONG&gt;Table1&lt;/STRONG&gt; (Import mode): Contains OrderNumber, Amount, and RequestedDeliveryDate.&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;&lt;STRONG&gt;Table2&lt;/STRONG&gt; (DirectQuery mode): Contains OrderNumber and ConfirmedDeliveryDate (updated through PowerApps).&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;&lt;STRONG&gt;Calendar Table&lt;/STRONG&gt;: Related to both date fields to support date-based analysis.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;Your goal is to show delivery amounts from Table1, grouped by ConfirmedDeliveryDate from Table2 when it exists. If it doesn't, use the RequestedDeliveryDate from Table1 all within a matrix visual that’s based on your calendar table.&lt;/P&gt;&lt;H3&gt;&lt;FONT color="#000000"&gt;&lt;STRONG&gt;1. Optional Column for Confirmed Dates (if you prefer lookup logic)&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/H3&gt;&lt;P&gt;If you want to bring in the confirmed delivery date into Table1:&lt;/P&gt;&lt;PRE&gt;ConfirmedDate = 
LOOKUPVALUE(
    Table2[ConfirmedDeliveryDate],
    Table2[OrderNumber], Table1[OrderNumber]
)&lt;/PRE&gt;&lt;H3&gt;&lt;FONT color="#000000"&gt;&lt;STRONG&gt;2. Create a Custom Measure for the Grouping Date&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/H3&gt;&lt;P&gt;This measure decides whether to group by ConfirmedDeliveryDate or fall back to RequestedDeliveryDate:&lt;/P&gt;&lt;PRE&gt;EffectiveDeliveryDate = 
VAR Confirmed =
    CALCULATE(
        MAX(Table2[ConfirmedDeliveryDate]),
        Table2[OrderNumber] = MAX(Table1[OrderNumber])
    )
RETURN
    IF(NOT ISBLANK(Confirmed), Confirmed, MAX(Table1[RequestedDeliveryDate]))&lt;/PRE&gt;&lt;P&gt;&lt;EM&gt;This gives you a dynamic date based on the availability of confirmed dates.&lt;/EM&gt;&lt;/P&gt;&lt;H3&gt;&lt;FONT color="#000000"&gt;&lt;STRONG&gt;3. Measure to Display the Amounts&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/H3&gt;&lt;P&gt;To show the correct delivery amount on the matrix based on the selected date from the calendar table:&lt;/P&gt;&lt;PRE&gt;DynamicDeliveryAmount = 
VAR CurrentDate = MAX('Calendar'[Date])
RETURN
    CALCULATE(
        SUM(Table1[Amount]),
        FILTER(
            Table1,
            VAR Confirmed =
                CALCULATE(
                    MAX(Table2[ConfirmedDeliveryDate]),
                    Table2[OrderNumber] = Table1[OrderNumber]
                )
            VAR ChosenDate =
                IF(NOT ISBLANK(Confirmed), Confirmed, Table1[RequestedDeliveryDate])
            RETURN ChosenDate = CurrentDate
        )
    )&lt;/PRE&gt;&lt;P&gt;&lt;EM&gt;Use this measure in your matrix with the Calendar[Date] as the row or column field. It ensures the amount is shown for the correct date, whether confirmed or requested.&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;If you found this solution helpful, please consider accepting it and giving it a kudos (Like) it’s greatly appreciated and helps others find the solution more easily.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Best Regards,&lt;BR /&gt;&lt;A href="https://www.linkedin.com/in/nasif-azam-9aa2331a0/" target="_blank" rel="noopener nofollow noreferrer"&gt;Nasif Azam&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 13 Jun 2025 17:27:39 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dynamic-date-substitution/m-p/4731825#M181261</guid>
      <dc:creator>Nasif_Azam</dc:creator>
      <dc:date>2025-06-13T17:27:39Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamic date substitution</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dynamic-date-substitution/m-p/4733558#M181319</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="1261878" data-lia-user-login="dimotori" class="lia-mention lia-mention-user"&gt;dimotori&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;Thank you for reaching out to the Fabric Community.&lt;/P&gt;
&lt;P&gt;The solution provided by the &lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="871356" data-lia-user-login="Nasif_Azam" class="lia-mention lia-mention-user"&gt;Nasif_Azam&lt;/a&gt;&amp;nbsp;, is well thought out and suits your scenario. Please give it a try, and if you need any further clarification or assistance, we are here to help.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;A special thanks to &lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="871356" data-lia-user-login="Nasif_Azam" class="lia-mention lia-mention-user"&gt;Nasif_Azam&lt;/a&gt;&amp;nbsp;&lt;STRONG&gt;&amp;nbsp;, &lt;/STRONG&gt;for the quick and insightful response.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Regards,&lt;/P&gt;
&lt;P&gt;Yugandhar.&lt;/P&gt;</description>
      <pubDate>Mon, 16 Jun 2025 12:36:15 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dynamic-date-substitution/m-p/4733558#M181319</guid>
      <dc:creator>V-yubandi-msft</dc:creator>
      <dc:date>2025-06-16T12:36:15Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamic date substitution</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dynamic-date-substitution/m-p/4737646#M181459</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="1261878" data-lia-user-login="dimotori" class="lia-mention lia-mention-user"&gt;dimotori&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P data-start="69" data-end="314"&gt;Have you had a chance to check the response shared by &lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="871356" data-lia-user-login="Nasif_Azam" class="lia-mention lia-mention-user"&gt;Nasif_Azam&lt;/a&gt;&amp;nbsp;? Please let us know if it worked for you.&lt;BR data-start="180" data-end="183" /&gt;If your issue is resolved, kindly mark it as the &lt;STRONG&gt;accepted solution&amp;nbsp;&lt;/STRONG&gt;it helps others in the community who may face a similar issue.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;P data-start="316" data-end="326" data-is-last-node="" data-is-only-node=""&gt;Thank You.&lt;/P&gt;</description>
      <pubDate>Thu, 19 Jun 2025 12:26:40 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dynamic-date-substitution/m-p/4737646#M181459</guid>
      <dc:creator>V-yubandi-msft</dc:creator>
      <dc:date>2025-06-19T12:26:40Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamic date substitution</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dynamic-date-substitution/m-p/4738020#M181479</link>
      <description>&lt;P&gt;Nasif, thank you for taking a look, I tried similar solutions before but with little success. replicated #3 proposed by you below, does not seem to work&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;both Table 1 and Table 2 are connected to Calendar as 1:* (noticed that filter expression for Table 2 refers to Table 1 which dax would not allow), tried both MAX and SELECTEDVALE for that, with no result.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 19 Jun 2025 21:48:01 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dynamic-date-substitution/m-p/4738020#M181479</guid>
      <dc:creator>dimotori</dc:creator>
      <dc:date>2025-06-19T21:48:01Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamic date substitution</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dynamic-date-substitution/m-p/4738275#M181484</link>
      <description>&lt;P&gt;Hey&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="1261878" data-lia-user-login="dimotori" class="lia-mention lia-mention-user"&gt;dimotori&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;It seems that the filter expression you're using in the measure might be causing issues due to the relationship and how the tables are connected. Since you're using a 1:* relationship between Table1 (import mode) and Table2 (direct query mode), this could lead to problems when trying to reference fields from Table2 in the filter of Table1. Updated approach you can try:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;&lt;P&gt;&lt;STRONG&gt;Ensure Correct Relationship&lt;/STRONG&gt;: Make sure that the relationship between your tables is properly set. It should be based on &lt;STRONG&gt;OrderNumber&lt;/STRONG&gt; for both tables. If your &lt;STRONG&gt;ConfirmedDeliveryDate&lt;/STRONG&gt; is in Table2 and &lt;STRONG&gt;RequestedDeliveryDate&lt;/STRONG&gt; is in Table1, you should be able to perform the check in your measure correctly.&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;&lt;STRONG&gt;Update the Measure to Avoid Direct Filtering&lt;/STRONG&gt;:&lt;BR /&gt;Instead of using a &lt;STRONG&gt;FILTER&lt;/STRONG&gt; directly on Table1 inside your measure, you can make use of &lt;STRONG&gt;TREATAS&lt;/STRONG&gt; to pass the filter from the calendar table to Table2, ensuring you're using the correct date context.&lt;/P&gt;&lt;/LI&gt;&lt;/OL&gt;&lt;PRE&gt;DynamicDeliveryAmount = 
VAR CurrentDate = MAX('Calendar'[Date])
VAR Confirmed =
    CALCULATE(
        MAX(Table2[ConfirmedDeliveryDate]),
        TREATAS(
            VALUES(Table1[OrderNumber]),
            Table2[OrderNumber]
        )
    )
VAR ChosenDate =
    IF(NOT ISBLANK(Confirmed), Confirmed, MAX(Table1[RequestedDeliveryDate]))
RETURN
    CALCULATE(
        SUM(Table1[Amount]),
        FILTER(
            Table1,
            ChosenDate = CurrentDate
        )
    )&lt;/PRE&gt;&lt;H3&gt;&amp;nbsp;&lt;/H3&gt;&lt;P&gt;&lt;STRONG&gt;If you found this solution helpful, please consider accepting it and giving it a kudos (Like) it’s greatly appreciated and helps others find the solution more easily.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Best Regards,&lt;BR /&gt;&lt;A href="https://www.linkedin.com/in/nasif-azam-9aa2331a0/" target="_blank" rel="noopener nofollow noreferrer"&gt;Nasif Azam&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 20 Jun 2025 06:08:25 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dynamic-date-substitution/m-p/4738275#M181484</guid>
      <dc:creator>Nasif_Azam</dc:creator>
      <dc:date>2025-06-20T06:08:25Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamic date substitution</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dynamic-date-substitution/m-p/4738380#M181487</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="1261878" data-lia-user-login="dimotori" class="lia-mention lia-mention-user"&gt;dimotori&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;Thanks for sharing, &lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="871356" data-lia-user-login="Nasif_Azam" class="lia-mention lia-mention-user"&gt;Nasif_Azam&lt;/a&gt;&amp;nbsp;the updated solution using TREATAS is an effective workaround it bypasses cross table filtering limitations by matching OrderNumber values between the two tables. This enables Power BI to evaluate the ConfirmedDeliveryDate from Table2 when available, and fall back to the RequestedDeliveryDate from Table1 when necessary.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I'd recommend testing this approach in your matrix visual with Calendar[Date] on the rows and the dynamic delivery amount measure in the values section. Let me know how it behaves in your report&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Appreciate your continued contributions to the community&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="871356" data-lia-user-login="Nasif_Azam" class="lia-mention lia-mention-user"&gt;Nasif_Azam&lt;/a&gt;&amp;nbsp;.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;Best regards, &lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;Yugandhar.&lt;/STRONG&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 20 Jun 2025 07:37:14 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dynamic-date-substitution/m-p/4738380#M181487</guid>
      <dc:creator>V-yubandi-msft</dc:creator>
      <dc:date>2025-06-20T07:37:14Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamic date substitution</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dynamic-date-substitution/m-p/4738924#M181515</link>
      <description>&lt;P&gt;Thnks, reviewed that again, but seem to get the same result:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;Note: there are no relationships between Table 1 and Table 2, as that would not allow to create any between them and calendar at the same time&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 20 Jun 2025 21:28:37 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dynamic-date-substitution/m-p/4738924#M181515</guid>
      <dc:creator>dimotori</dc:creator>
      <dc:date>2025-06-20T21:28:37Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamic date substitution</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dynamic-date-substitution/m-p/4740596#M181565</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="1261878" data-lia-user-login="dimotori" class="lia-mention lia-mention-user"&gt;dimotori&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;I tested this scenario with sample data, and the logic works as expected. When a confirmed delivery date is available, the corresponding amount is displayed otherwise, it defaults to the requested delivery date.&lt;/P&gt;
&lt;P&gt;I validated the results using a table visual both the placement of values and the total amounts are accurate and meet the requirements.&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;FYI:&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I’ve attached the .pbix file for you to review the DAX logic and model relationships. Let me know if you'd like to see this in a matrix visual or explore any enhancements.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Regards,&lt;/P&gt;
&lt;P&gt;Yugandhar.&lt;/P&gt;</description>
      <pubDate>Mon, 23 Jun 2025 11:10:51 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dynamic-date-substitution/m-p/4740596#M181565</guid>
      <dc:creator>V-yubandi-msft</dc:creator>
      <dc:date>2025-06-23T11:10:51Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamic date substitution</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dynamic-date-substitution/m-p/4745154#M181691</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="1261878" data-lia-user-login="dimotori" class="lia-mention lia-mention-user"&gt;dimotori&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;Does the solution provided address your issue, or are you still experiencing the problem? Your feedback is important to the community. If your issue has been resolved, please mark the response as&lt;STRONG&gt; &lt;I&gt;Accepted Solution&lt;/I&gt;&lt;/STRONG&gt; to help others find it more easily.&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;Thank you.&lt;/P&gt;</description>
      <pubDate>Thu, 26 Jun 2025 13:10:33 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dynamic-date-substitution/m-p/4745154#M181691</guid>
      <dc:creator>V-yubandi-msft</dc:creator>
      <dc:date>2025-06-26T13:10:33Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamic date substitution</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dynamic-date-substitution/m-p/4748785#M181844</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="1261878" data-lia-user-login="dimotori" class="lia-mention lia-mention-user"&gt;dimotori&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;I hope my message clarified everything. If everything is resolved, please mark it as &lt;STRONG&gt;Accepted solution.&lt;/STRONG&gt; Please let me know if you are facing any issues.&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;Thank You.&lt;/P&gt;</description>
      <pubDate>Mon, 30 Jun 2025 16:57:58 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dynamic-date-substitution/m-p/4748785#M181844</guid>
      <dc:creator>V-yubandi-msft</dc:creator>
      <dc:date>2025-06-30T16:57:58Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamic date substitution</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dynamic-date-substitution/m-p/4748927#M181849</link>
      <description>&lt;P&gt;Hi, thank you for looking into this as well, however in the proposed solution date is not populating neither.&lt;/P&gt;&lt;P&gt;same as in your screenshot, confirmed date for order A001 is June 25, while in matrix table it pulls June 24, as it is in "Order table".&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Besides, proposed LOOKUPVALUE function will not work well in Direct Query mode i have for Confirmed date table&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 30 Jun 2025 22:08:04 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dynamic-date-substitution/m-p/4748927#M181849</guid>
      <dc:creator>dimotori</dc:creator>
      <dc:date>2025-06-30T22:08:04Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamic date substitution</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dynamic-date-substitution/m-p/4757742#M182179</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="1261878" data-lia-user-login="dimotori" class="lia-mention lia-mention-user"&gt;dimotori&lt;/a&gt;&amp;nbsp;,&lt;BR /&gt;Thank you for the follow-up. We are happy to assist you!&lt;BR /&gt;Please refer the attached screenshot and file for your reference.&lt;/P&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;I hope this resolve your query.&lt;BR /&gt;Thank you.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 09 Jul 2025 11:56:02 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dynamic-date-substitution/m-p/4757742#M182179</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2025-07-09T11:56:02Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamic date substitution</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dynamic-date-substitution/m-p/4757887#M182187</link>
      <description>&lt;P&gt;Thanks,&amp;nbsp;&lt;SPAN class=""&gt;&lt;SPAN class=""&gt;&lt;SPAN class=""&gt;v-pagayam-msft,&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;unfortunately calculated column will not work in direct query mode, needs to be a measure.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;thanks for effort, though&lt;/P&gt;&lt;DIV class=""&gt;&lt;A class="" href="https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dynamic-date-substitution/m-p/4757742#" target="_blank" rel="noopener"&gt;Preview&lt;/A&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&amp;nbsp;&lt;/DIV&gt;&lt;/DIV&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;DIV&gt;&lt;DIV class=""&gt;&amp;nbsp;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Wed, 09 Jul 2025 15:00:27 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dynamic-date-substitution/m-p/4757887#M182187</guid>
      <dc:creator>dimotori</dc:creator>
      <dc:date>2025-07-09T15:00:27Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamic date substitution</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dynamic-date-substitution/m-p/4758563#M182219</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="1261878" data-lia-user-login="dimotori" class="lia-mention lia-mention-user"&gt;dimotori&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;I’ve included the measure as you recommended and attached the file. Please review it when you have a chance and let me know if everything is correct.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Hope this is helpful.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 10 Jul 2025 07:24:29 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dynamic-date-substitution/m-p/4758563#M182219</guid>
      <dc:creator>V-yubandi-msft</dc:creator>
      <dc:date>2025-07-10T07:24:29Z</dc:date>
    </item>
  </channel>
</rss>

