<?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: Get reference from one table to display data in another table in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Get-reference-from-one-table-to-display-data-in-another-table/m-p/3685214#M143142</link>
    <description>&lt;P&gt;Hi&amp;nbsp; &lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="290136" data-lia-user-login="dprousteau" class="lia-mention lia-mention-user"&gt;dprousteau&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Here are the steps you can follow：&lt;/P&gt;
&lt;P&gt;1. Create measure.&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;MinimalStock =
SUMX(
    FILTER(ALL('TableInfosRefs'),    'TableInfosRefs'[idRef]=MAX('TableJournal'[idRef])&amp;amp;&amp;amp;'TableInfosRefs'[Name]=MAX('TableJournal'[Name])),
    [MinimalStock])&lt;/LI-CODE&gt;&lt;LI-CODE lang="markup"&gt;QuantityForOrder =
[MinimalStock]-
SUMX(
    'TableJournal',[JournalQuantity])&lt;/LI-CODE&gt;
&lt;P&gt;2. Result:&lt;/P&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;Best Regards,&lt;/P&gt;
&lt;P&gt;Liu Yang&lt;/P&gt;
&lt;P&gt;If this post &lt;STRONG&gt;helps&lt;/STRONG&gt;, then please consider &lt;EM&gt;Accept it as the solution&lt;/EM&gt; to help the other members find it more quickly&lt;/P&gt;</description>
    <pubDate>Wed, 07 Feb 2024 08:52:46 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2024-02-07T08:52:46Z</dc:date>
    <item>
      <title>Get reference from one table to display data in another table</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Get-reference-from-one-table-to-display-data-in-another-table/m-p/3681362#M142960</link>
      <description>&lt;P&gt;Dear all,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;First of all, thanks a lot to all the posters for all the answers provided to everyone, which helped me go through a lot of things up to now.&lt;/P&gt;&lt;P&gt;Unfortunately I have a syntax question in Power BI and cannot find the answer.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have 2 tables:&lt;BR /&gt;TableInfosRefs containing data (name, price, minimal stock...) for all the parts, with unique identifier idRef&lt;/P&gt;&lt;TABLE&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;TableInfosRefs&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;idRef&lt;/TD&gt;&lt;TD&gt;Name&lt;/TD&gt;&lt;TD&gt;Price&lt;/TD&gt;&lt;TD&gt;MinimalStock&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;100001&lt;/TD&gt;&lt;TD&gt;Screw&lt;/TD&gt;&lt;TD&gt;15&lt;/TD&gt;&lt;TD&gt;200&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;100002&lt;/TD&gt;&lt;TD&gt;Nut&lt;/TD&gt;&lt;TD&gt;20&lt;/TD&gt;&lt;TD&gt;15&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;100003&lt;/TD&gt;&lt;TD&gt;Bolt&lt;/TD&gt;&lt;TD&gt;25&lt;/TD&gt;&lt;TD&gt;0&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&lt;BR /&gt;TableJournal containing a journal of the inputs and outputs quantities, based on the identifier idRef. It also contains price, name... which are copied each time an input or output is added in the database.&lt;/P&gt;&lt;TABLE&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;TableJournal&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;idJournal&lt;/TD&gt;&lt;TD&gt;idRef&lt;/TD&gt;&lt;TD&gt;Date&lt;/TD&gt;&lt;TD&gt;JournalQuantity&lt;/TD&gt;&lt;TD&gt;Name&lt;/TD&gt;&lt;TD&gt;Price&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;1&lt;/TD&gt;&lt;TD&gt;100001&lt;/TD&gt;&lt;TD&gt;20/01/2024&lt;/TD&gt;&lt;TD&gt;50&lt;/TD&gt;&lt;TD&gt;Screw&lt;/TD&gt;&lt;TD&gt;15&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;2&lt;/TD&gt;&lt;TD&gt;100001&lt;/TD&gt;&lt;TD&gt;22/01/2024&lt;/TD&gt;&lt;TD&gt;-2&lt;/TD&gt;&lt;TD&gt;Screw&lt;/TD&gt;&lt;TD&gt;15&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;3&lt;/TD&gt;&lt;TD&gt;100002&lt;/TD&gt;&lt;TD&gt;24/01/2024&lt;/TD&gt;&lt;TD&gt;100&lt;/TD&gt;&lt;TD&gt;Nut&lt;/TD&gt;&lt;TD&gt;20&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;4&lt;/TD&gt;&lt;TD&gt;100002&lt;/TD&gt;&lt;TD&gt;26/01/2024&lt;/TD&gt;&lt;TD&gt;-20&lt;/TD&gt;&lt;TD&gt;Nut&lt;/TD&gt;&lt;TD&gt;20&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;5&lt;/TD&gt;&lt;TD&gt;100003&lt;/TD&gt;&lt;TD&gt;28/01/2024&lt;/TD&gt;&lt;TD&gt;6&lt;/TD&gt;&lt;TD&gt;Bolt&lt;/TD&gt;&lt;TD&gt;25&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I want to show a table of all the parts that need to be ordered, if current stock is below minimal stock.&lt;/P&gt;&lt;TABLE&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;Display Table to order: What I want&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;idRef&lt;/TD&gt;&lt;TD&gt;Name&lt;/TD&gt;&lt;TD&gt;CurrentStock&lt;/TD&gt;&lt;TD&gt;MinimalStock&lt;/TD&gt;&lt;TD&gt;QuantityForOrder&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;[from TableJournal]&lt;/TD&gt;&lt;TD&gt;[from TableJournal]&lt;/TD&gt;&lt;TD&gt;[from TableJournal]&lt;/TD&gt;&lt;TD&gt;[from TableInfosRefs]&lt;/TD&gt;&lt;TD&gt;[MinimalStock - CurrentStock]&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;100001&lt;/TD&gt;&lt;TD&gt;Screw&lt;/TD&gt;&lt;TD&gt;48&lt;/TD&gt;&lt;TD&gt;&lt;FONT color="#00FF00"&gt;200&lt;/FONT&gt;&lt;/TD&gt;&lt;TD&gt;&lt;FONT color="#00FF00"&gt;152&lt;/FONT&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;100002&lt;/TD&gt;&lt;TD&gt;Nut&lt;/TD&gt;&lt;TD&gt;80&lt;/TD&gt;&lt;TD&gt;&lt;FONT color="#00FF00"&gt;15&lt;/FONT&gt;&lt;/TD&gt;&lt;TD&gt;&lt;FONT color="#00FF00"&gt;-65&lt;/FONT&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;100003&lt;/TD&gt;&lt;TD&gt;Bolt&lt;/TD&gt;&lt;TD&gt;6&lt;/TD&gt;&lt;TD&gt;&lt;FONT color="#00FF00"&gt;0&lt;/FONT&gt;&lt;/TD&gt;&lt;TD&gt;&lt;FONT color="#00FF00"&gt;-6&lt;/FONT&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Description of table above: I made a display table based on TableJournal where are shown the idRef, price, name, and current stock (sum of all the inputs and all the outputs on the idRef - the outputs quantities have a "minus" sign in this column)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I want to add to this display table the 2 columns based on TableInfosRefs :&lt;BR /&gt;1. MinimalStock for each idRef, idRef being searched in TableInfosRefs for each line of my display table based on TableJournal&lt;BR /&gt;2. QuantityForOrder = MinimalStock minus current stock&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;TABLE&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;Display Table to order: What I currently get&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;idRef&lt;/TD&gt;&lt;TD&gt;Name&lt;/TD&gt;&lt;TD&gt;CurrentStock&lt;/TD&gt;&lt;TD&gt;MinimalStock&lt;/TD&gt;&lt;TD&gt;QuantityForOrder&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;[from TableJournal]&lt;/TD&gt;&lt;TD&gt;[from TableJournal]&lt;/TD&gt;&lt;TD&gt;[from TableJournal]&lt;/TD&gt;&lt;TD&gt;[from TableInfosRefs]&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;100001&lt;/TD&gt;&lt;TD&gt;Screw&lt;/TD&gt;&lt;TD&gt;48&lt;/TD&gt;&lt;TD&gt;&lt;FONT color="#FF0000"&gt;215&lt;/FONT&gt;&lt;/TD&gt;&lt;TD&gt;&lt;FONT color="#FF0000"&gt;167&lt;/FONT&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;100002&lt;/TD&gt;&lt;TD&gt;Nut&lt;/TD&gt;&lt;TD&gt;80&lt;/TD&gt;&lt;TD&gt;&lt;FONT color="#FF0000"&gt;215&lt;/FONT&gt;&lt;/TD&gt;&lt;TD&gt;&lt;FONT color="#FF0000"&gt;135&lt;/FONT&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;100003&lt;/TD&gt;&lt;TD&gt;Bolt&lt;/TD&gt;&lt;TD&gt;6&lt;/TD&gt;&lt;TD&gt;&lt;FONT color="#FF0000"&gt;215&lt;/FONT&gt;&lt;/TD&gt;&lt;TD&gt;&lt;FONT color="#FF0000"&gt;209&lt;/FONT&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Problem for 1. is that I cannot find how to display the minimal stock for each idRef: It makes the SUM of all my minimal stocks in the TableInfosRefs&lt;/P&gt;&lt;P&gt;Problem for 2.: I cannot find the correct syntax to take the idRef of each line from TableJournal. Here is my formula:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;QuantityForOrder = &lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;LOOKUPVALUE('TableInfosRefs'[MinimalStock],'TableInfosRefs'[idRef],xxx) - SUM('TableJournal'[JournalQuantity]) &lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;xxx is how to take the idRef for each line from TableJournal. I've tried 'TableJournal'[idRef] with Value, Selected, ThisItem, Each, I cannot find the correct syntax.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I hope you can help me on this topic, thanks a lot!&lt;/P&gt;</description>
      <pubDate>Mon, 05 Feb 2024 22:24:05 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Get-reference-from-one-table-to-display-data-in-another-table/m-p/3681362#M142960</guid>
      <dc:creator>dprousteau</dc:creator>
      <dc:date>2024-02-05T22:24:05Z</dc:date>
    </item>
    <item>
      <title>Re: Get reference from one table to display data in another table</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Get-reference-from-one-table-to-display-data-in-another-table/m-p/3682047#M143000</link>
      <description>&lt;P&gt;To achieve the desired output, you can use DAX (Data Analysis Expressions) measures in Power BI. Let's break down the solution into two parts:&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;&lt;STRONG&gt;Finding Minimal Stock for each idRef:&lt;/STRONG&gt;&lt;/LI&gt;&lt;LI&gt;&lt;STRONG&gt;Calculating QuantityForOrder&lt;/STRONG&gt;&lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;First, for the Minimal Stock issue, you can use a combination of SUMMARIZE and RELATED functions to get the minimal stock for each idRef:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;MinimalStock =&lt;BR /&gt;VAR SummaryTable =&lt;BR /&gt;SUMMARIZE(&lt;BR /&gt;'TableJournal',&lt;BR /&gt;'TableJournal'[idRef],&lt;BR /&gt;"MinimalStock", MAX('TableInfosRefs'[MinimalStock])&lt;BR /&gt;)&lt;BR /&gt;RETURN&lt;BR /&gt;SUMX(&lt;BR /&gt;FILTER(&lt;BR /&gt;SummaryTable,&lt;BR /&gt;'TableJournal'[idRef] = EARLIER('TableJournal'[idRef])&lt;BR /&gt;),&lt;BR /&gt;[MinimalStock]&lt;BR /&gt;)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This measure creates a summary table where it groups TableJournal by idRef and extracts the maximum MinimalStock for each idRef from TableInfosRefs. Then, it iterates over each row in the summary table and filters the relevant idRef to get the correct MinimalStock.&lt;/P&gt;&lt;P&gt;Second, for the QuantityForOrder calculation, you need to subtract the CurrentStock from the MinimalStock:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;QuantityForOrder =&lt;BR /&gt;VAR CurrentStock = SUM('TableJournal'[JournalQuantity])&lt;BR /&gt;VAR MinimalStock = [MinimalStock]&lt;BR /&gt;RETURN&lt;BR /&gt;MinimalStock - CurrentStock&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This measure simply subtracts the CurrentStock from the MinimalStock calculated in the first measure to determine the QuantityForOrder.&lt;/P&gt;&lt;P&gt;Ensure you add these measures to your Power BI model and use them in your visualizations. This should give you the desired output where you can see the parts that need to be ordered based on the current stock and minimal stock thresholds.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;If this post&amp;nbsp;helps, then please consider&amp;nbsp;Accepting it as the solution&amp;nbsp;to help the other members find it more quickly.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;In case there is still a problem, please feel free and explain your issue in detail,&amp;nbsp;It will be my pleasure to assist you in any way I can.&lt;/STRONG&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 06 Feb 2024 06:41:26 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Get-reference-from-one-table-to-display-data-in-another-table/m-p/3682047#M143000</guid>
      <dc:creator>123abc</dc:creator>
      <dc:date>2024-02-06T06:41:26Z</dc:date>
    </item>
    <item>
      <title>Re: Get reference from one table to display data in another table</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Get-reference-from-one-table-to-display-data-in-another-table/m-p/3685214#M143142</link>
      <description>&lt;P&gt;Hi&amp;nbsp; &lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="290136" data-lia-user-login="dprousteau" class="lia-mention lia-mention-user"&gt;dprousteau&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Here are the steps you can follow：&lt;/P&gt;
&lt;P&gt;1. Create measure.&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;MinimalStock =
SUMX(
    FILTER(ALL('TableInfosRefs'),    'TableInfosRefs'[idRef]=MAX('TableJournal'[idRef])&amp;amp;&amp;amp;'TableInfosRefs'[Name]=MAX('TableJournal'[Name])),
    [MinimalStock])&lt;/LI-CODE&gt;&lt;LI-CODE lang="markup"&gt;QuantityForOrder =
[MinimalStock]-
SUMX(
    'TableJournal',[JournalQuantity])&lt;/LI-CODE&gt;
&lt;P&gt;2. Result:&lt;/P&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;Best Regards,&lt;/P&gt;
&lt;P&gt;Liu Yang&lt;/P&gt;
&lt;P&gt;If this post &lt;STRONG&gt;helps&lt;/STRONG&gt;, then please consider &lt;EM&gt;Accept it as the solution&lt;/EM&gt; to help the other members find it more quickly&lt;/P&gt;</description>
      <pubDate>Wed, 07 Feb 2024 08:52:46 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Get-reference-from-one-table-to-display-data-in-another-table/m-p/3685214#M143142</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2024-02-07T08:52:46Z</dc:date>
    </item>
    <item>
      <title>Re: Get reference from one table to display data in another table</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Get-reference-from-one-table-to-display-data-in-another-table/m-p/3739690#M145807</link>
      <description>&lt;P&gt;Thank you SO MUCH&amp;nbsp;Anonymous&lt;/a&gt;&amp;nbsp;, it worked perfectly!&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 04 Mar 2024 10:16:16 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Get-reference-from-one-table-to-display-data-in-another-table/m-p/3739690#M145807</guid>
      <dc:creator>dprousteau</dc:creator>
      <dc:date>2024-03-04T10:16:16Z</dc:date>
    </item>
    <item>
      <title>Re: Get reference from one table to display data in another table</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Get-reference-from-one-table-to-display-data-in-another-table/m-p/3739691#M145808</link>
      <description>&lt;P&gt;Thanks a lot&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="403667" data-lia-user-login="123abc" class="lia-mention lia-mention-user"&gt;123abc&lt;/a&gt;&amp;nbsp;for your help. Unfortunately it didn't work, the EARLIER function told me that there was no earlier version of the number. No need to look further, the answer of&amp;nbsp;Anonymous&lt;/a&gt;&amp;nbsp;works perfectly. Once again, thanks everyone for your quick support!&lt;/P&gt;</description>
      <pubDate>Mon, 04 Mar 2024 10:17:47 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Get-reference-from-one-table-to-display-data-in-another-table/m-p/3739691#M145808</guid>
      <dc:creator>dprousteau</dc:creator>
      <dc:date>2024-03-04T10:17:47Z</dc:date>
    </item>
  </channel>
</rss>

