<?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 Help on creating a calculated column or mesure that will bring a value from another table in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-Help-on-creating-a-calculated-column-or-mesure-that-will/m-p/2227909#M53110</link>
    <description>&lt;P&gt;Hi Kim;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;You did understand my issue perfectly even though I was not that good at explaning it.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Your solution worked perfectly! This is awesome!!!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks so much!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Mcastro.&lt;/P&gt;</description>
    <pubDate>Wed, 08 Dec 2021 13:53:14 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2021-12-08T13:53:14Z</dc:date>
    <item>
      <title>DAX Help on creating a calculated column or mesure that will bring a value from another table</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-Help-on-creating-a-calculated-column-or-mesure-that-will/m-p/2226372#M53015</link>
      <description>&lt;P&gt;Hi;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;just to put it out there right away. I am a basic PBI user, reason why I am asking for help on this solution which for most people is problably really easy.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Here is what I need:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have to tables, "Main_Table" and "Secondary_Table". The tables have related fields ([Asset Type] and [Company]). What I need is bring a value to from the second table into the first table [(Useful Life (Y)] making sure to compare the tables by "asset type" and "company" so that the values from "useful life (y) are specific for each company just like the table defines it. See images below:&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;This is the second table (excel version) that defines the useful life for of the diff asset types; which they are not the same for all companies as you can see.&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;and this is that same table Unpivoted in PowerQuery (I just changed the company names for security reasons):&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I was thinking that maybe LOOKUPVALUE might work but still do not know how to create such code.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks in advance for all the help.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Mcastro&lt;/P&gt;</description>
      <pubDate>Tue, 07 Dec 2021 20:52:53 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-Help-on-creating-a-calculated-column-or-mesure-that-will/m-p/2226372#M53015</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2021-12-07T20:52:53Z</dc:date>
    </item>
    <item>
      <title>Re: DAX Help on creating a calculated column or mesure that will bring a value from another table</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-Help-on-creating-a-calculated-column-or-mesure-that-will/m-p/2226520#M53024</link>
      <description>&lt;P&gt;In power query you can click Merge tables and join them both on the two columns. You should then end up with a single table with all your data.&lt;/P&gt;</description>
      <pubDate>Tue, 07 Dec 2021 23:27:24 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-Help-on-creating-a-calculated-column-or-mesure-that-will/m-p/2226520#M53024</guid>
      <dc:creator>bcdobbs</dc:creator>
      <dc:date>2021-12-07T23:27:24Z</dc:date>
    </item>
    <item>
      <title>Re: DAX Help on creating a calculated column or mesure that will bring a value from another table</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-Help-on-creating-a-calculated-column-or-mesure-that-will/m-p/2226786#M53031</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;I am not sure if I understood your question correctly, but please try something like below.&lt;/P&gt;
&lt;P&gt;It is for creating a new column.&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;&lt;STRONG&gt;&lt;EM&gt;Useful Life (Y) CC =&lt;/EM&gt;&lt;/STRONG&gt;&lt;BR /&gt;&lt;EM&gt;CALCULATETABLE (&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;VALUES ( Security_Bridge_CompanyName[Useful Life(Y)] ),&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;FILTER (&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;Security_Bridge_CompanyName,&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;Security_Bridge_CompanyName[Company name] = Account_Final_Report[Company]&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;&amp;amp;&amp;amp; Security_Bridge_CompanyName[Asset Type] = Account_Final_Report[Asset Type]&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;)&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;)&lt;/EM&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 08 Dec 2021 04:11:47 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-Help-on-creating-a-calculated-column-or-mesure-that-will/m-p/2226786#M53031</guid>
      <dc:creator>Jihwan_Kim</dc:creator>
      <dc:date>2021-12-08T04:11:47Z</dc:date>
    </item>
    <item>
      <title>Re: DAX Help on creating a calculated column or mesure that will bring a value from another table</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-Help-on-creating-a-calculated-column-or-mesure-that-will/m-p/2227909#M53110</link>
      <description>&lt;P&gt;Hi Kim;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;You did understand my issue perfectly even though I was not that good at explaning it.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Your solution worked perfectly! This is awesome!!!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks so much!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Mcastro.&lt;/P&gt;</description>
      <pubDate>Wed, 08 Dec 2021 13:53:14 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-Help-on-creating-a-calculated-column-or-mesure-that-will/m-p/2227909#M53110</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2021-12-08T13:53:14Z</dc:date>
    </item>
    <item>
      <title>Re: DAX Help on creating a calculated column or mesure that will bring a value from another table</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-Help-on-creating-a-calculated-column-or-mesure-that-will/m-p/2227920#M53111</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;SPAN&gt;bcdobbs;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Yes! I had already thought about that but it was actually not an option since the "asset type" column is not available in the Account Fina Report Table. The "Asset Type" is also a CC within PBI hence not available in PQ.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;But thanks for the reply!&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Mcastro&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 08 Dec 2021 13:58:58 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-Help-on-creating-a-calculated-column-or-mesure-that-will/m-p/2227920#M53111</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2021-12-08T13:58:58Z</dc:date>
    </item>
    <item>
      <title>Re: DAX Help on creating a calculated column or mesure that will bring a value from another table</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-Help-on-creating-a-calculated-column-or-mesure-that-will/m-p/2227981#M53113</link>
      <description>&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Above chart showing program wise target temperature I need to show most used target temperature by particular program.&lt;/P&gt;&lt;P&gt;For example: 01BE - 150 is most used&amp;nbsp; target temperature like we are seeing in count of target temperature.&lt;/P&gt;&lt;P&gt;I want solution on that.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 08 Dec 2021 14:24:13 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-Help-on-creating-a-calculated-column-or-mesure-that-will/m-p/2227981#M53113</guid>
      <dc:creator>Balaraju</dc:creator>
      <dc:date>2021-12-08T14:24:13Z</dc:date>
    </item>
  </channel>
</rss>

