<?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: Measure Value from Related tables not showing up in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Measure-Value-from-Related-tables-not-showing-up/m-p/2948597#M97643</link>
    <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="317289" data-lia-user-login="tamerj1" class="lia-mention lia-mention-user"&gt;tamerj1&lt;/a&gt;&amp;nbsp;, I get below error&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Mon, 05 Dec 2022 13:50:01 GMT</pubDate>
    <dc:creator>yogeshk77</dc:creator>
    <dc:date>2022-12-05T13:50:01Z</dc:date>
    <item>
      <title>Measure Value from Related tables not showing up</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Measure-Value-from-Related-tables-not-showing-up/m-p/2948342#M97622</link>
      <description>&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Now, I need to calculated Velocity Per Day for every Area Path &amp;amp; every Iteration by using equation similar to -&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Tasks [Velocity Contributed]&amp;nbsp; &lt;/SPAN&gt;&lt;STRONG&gt;/&lt;/STRONG&gt;&lt;SPAN&gt; ( Capacity [Total Capacity] / Capacity [Per Day Capacity]&amp;nbsp; )&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;How do I build such a measure?&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 05 Dec 2022 12:08:10 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Measure-Value-from-Related-tables-not-showing-up/m-p/2948342#M97622</guid>
      <dc:creator>yogeshk77</dc:creator>
      <dc:date>2022-12-05T12:08:10Z</dc:date>
    </item>
    <item>
      <title>Re: Measure Value from Related tables not showing up</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Measure-Value-from-Related-tables-not-showing-up/m-p/2948432#M97630</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="321070" data-lia-user-login="yogeshk77" class="lia-mention lia-mention-user"&gt;yogeshk77&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;What are the relationships between the tables? At which granularity do you want to perferm the calculation and which type of aggregation is required (SUM, AVERAGE, etc..)?&lt;/P&gt;</description>
      <pubDate>Mon, 05 Dec 2022 12:57:19 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Measure-Value-from-Related-tables-not-showing-up/m-p/2948432#M97630</guid>
      <dc:creator>tamerj1</dc:creator>
      <dc:date>2022-12-05T12:57:19Z</dc:date>
    </item>
    <item>
      <title>Re: Measure Value from Related tables not showing up</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Measure-Value-from-Related-tables-not-showing-up/m-p/2948451#M97633</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="317289" data-lia-user-login="tamerj1" class="lia-mention lia-mention-user"&gt;tamerj1&lt;/a&gt;&amp;nbsp; Relationships - Both Master Tables (i.e. Area Master &amp;amp; Iteration Master) have Foriegn keys in both the tables (i.e. Task &amp;amp; Capacity)&lt;BR /&gt;&lt;BR /&gt;I need this data for each Area Path AND Iteration Path combination&lt;BR /&gt;&lt;BR /&gt;I will need SUM as an aggregation.&lt;/P&gt;</description>
      <pubDate>Mon, 05 Dec 2022 13:06:04 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Measure-Value-from-Related-tables-not-showing-up/m-p/2948451#M97633</guid>
      <dc:creator>yogeshk77</dc:creator>
      <dc:date>2022-12-05T13:06:04Z</dc:date>
    </item>
    <item>
      <title>Re: Measure Value from Related tables not showing up</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Measure-Value-from-Related-tables-not-showing-up/m-p/2948506#M97635</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="321070" data-lia-user-login="yogeshk77" class="lia-mention lia-mention-user"&gt;yogeshk77&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;Please try&lt;/P&gt;
&lt;LI-CODE lang="javascript"&gt;Measure1 =
SUMX (
    CROSSJOIN (
        VALUES ( 'Area Master'[Area Path] ),
        VALUES ( 'Iteration Master'[Iteration Path] )
    ),
    CALCULATE (
        DIVIDE (
            DIVIDE ( SUM ( Tasks[Velocity Contributed] ), SUM ( Capacity[Total Capacity] ) ),
            SUM ( Capacity[Per Day Capacity] )
        )
    )
)&lt;/LI-CODE&gt;</description>
      <pubDate>Mon, 05 Dec 2022 13:19:30 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Measure-Value-from-Related-tables-not-showing-up/m-p/2948506#M97635</guid>
      <dc:creator>tamerj1</dc:creator>
      <dc:date>2022-12-05T13:19:30Z</dc:date>
    </item>
    <item>
      <title>Re: Measure Value from Related tables not showing up</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Measure-Value-from-Related-tables-not-showing-up/m-p/2948597#M97643</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="317289" data-lia-user-login="tamerj1" class="lia-mention lia-mention-user"&gt;tamerj1&lt;/a&gt;&amp;nbsp;, I get below error&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 05 Dec 2022 13:50:01 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Measure-Value-from-Related-tables-not-showing-up/m-p/2948597#M97643</guid>
      <dc:creator>yogeshk77</dc:creator>
      <dc:date>2022-12-05T13:50:01Z</dc:date>
    </item>
    <item>
      <title>Re: Measure Value from Related tables not showing up</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Measure-Value-from-Related-tables-not-showing-up/m-p/2948771#M97652</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="321070" data-lia-user-login="yogeshk77" class="lia-mention lia-mention-user"&gt;yogeshk77&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;One DIVIDE is missing. Double check my code&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 05 Dec 2022 15:00:05 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Measure-Value-from-Related-tables-not-showing-up/m-p/2948771#M97652</guid>
      <dc:creator>tamerj1</dc:creator>
      <dc:date>2022-12-05T15:00:05Z</dc:date>
    </item>
    <item>
      <title>Re: Measure Value from Related tables not showing up</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Measure-Value-from-Related-tables-not-showing-up/m-p/2951563#M97884</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="317289" data-lia-user-login="tamerj1" class="lia-mention lia-mention-user"&gt;tamerj1&lt;/a&gt;&amp;nbsp;&amp;nbsp;Can you please take a look at this PBI file &amp;amp; tell me what's wrong with the calculation of Velocity per Day measure?&lt;BR /&gt;&lt;BR /&gt;&lt;A href="https://drive.google.com/file/d/17SG-ygm4sGNCZX8JZtASmkAarFLjYI1v/view?usp=sharing" target="_blank" rel="noopener"&gt;Here is&lt;/A&gt; the file&lt;/P&gt;</description>
      <pubDate>Tue, 06 Dec 2022 13:41:35 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Measure-Value-from-Related-tables-not-showing-up/m-p/2951563#M97884</guid>
      <dc:creator>yogeshk77</dc:creator>
      <dc:date>2022-12-06T13:41:35Z</dc:date>
    </item>
    <item>
      <title>Re: Measure Value from Related tables not showing up</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Measure-Value-from-Related-tables-not-showing-up/m-p/2956644#M98232</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="321070" data-lia-user-login="yogeshk77" class="lia-mention lia-mention-user"&gt;yogeshk77&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;Apologies for the late reply&lt;/P&gt;
&lt;P&gt;Please see attached file&lt;/P&gt;
&lt;P&gt;&lt;img /&gt;&lt;img /&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 08 Dec 2022 12:04:32 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Measure-Value-from-Related-tables-not-showing-up/m-p/2956644#M98232</guid>
      <dc:creator>tamerj1</dc:creator>
      <dc:date>2022-12-08T12:04:32Z</dc:date>
    </item>
    <item>
      <title>Re: Measure Value from Related tables not showing up</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Measure-Value-from-Related-tables-not-showing-up/m-p/2958073#M98359</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="317289" data-lia-user-login="tamerj1" class="lia-mention lia-mention-user"&gt;tamerj1&lt;/a&gt;&amp;nbsp;, You are awesome !! Thanks much !!!&lt;/P&gt;</description>
      <pubDate>Fri, 09 Dec 2022 04:08:42 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Measure-Value-from-Related-tables-not-showing-up/m-p/2958073#M98359</guid>
      <dc:creator>yogeshk77</dc:creator>
      <dc:date>2022-12-09T04:08:42Z</dc:date>
    </item>
  </channel>
</rss>

