<?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: Calculate Values based on a Distribution Key in a linked Table in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Calculate-Values-based-on-a-Distribution-Key-in-a-linked-Table/m-p/3329169#M124711</link>
    <description>&lt;P&gt;Thanks again for your help. Unfortunately the error persists.&lt;BR /&gt;&lt;BR /&gt;When the measure is used in a visual it only shows values for Project. All values for desk are blank or not recognized&lt;/P&gt;</description>
    <pubDate>Thu, 13 Jul 2023 10:28:40 GMT</pubDate>
    <dc:creator>BIlix</dc:creator>
    <dc:date>2023-07-13T10:28:40Z</dc:date>
    <item>
      <title>Calculate Values based on a Distribution Key in a linked Table</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Calculate-Values-based-on-a-Distribution-Key-in-a-linked-Table/m-p/3327492#M124622</link>
      <description>&lt;P&gt;Hello Community,&lt;BR /&gt;&lt;BR /&gt;I want to Calculate Values from my Fact Table based on another Table.&lt;BR /&gt;&lt;BR /&gt;I have Story Points in my Fact Table. I already have a Measure to Calculate the StoryPoints i need.&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;THe Fact Table is linked many to one to A Project Dimension. The Project Dimension is linked one to many to a Distribution Dimension via ProjectID&lt;BR /&gt;Every ProjectID has one or multiple Desks assigned in the DIstribution Dimension and also a Ditribution/allocatiion KEy.&lt;BR /&gt;The final calculation should exemplary be like this:&lt;BR /&gt;PRoject 1 is linked to Desk 1, Desk 2, Desk 3. Desk 1 has a 0.2, Desk 2 has 0.2, Desk 3 has 0.6 Allocation&lt;BR /&gt;&lt;BR /&gt;Exemplarily Project 1 has 10 assigned Story Points. The Storypoints should be multiplied by the Desk Distribution Key. Desk 1 has 2 SP, Desk 2 has 2 SP, Desk 3 has 6 SP.&lt;BR /&gt;&lt;BR /&gt;My Current Measure&lt;BR /&gt;SUMX(Values(DimDeskDistribution[Desk]), [Storypoint Measure] * Calculate(max(DimDeskdistribution[DeskDistribution])))&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;When i just put Projects in a MAtrix visual, the Storypoints are distributed correctly and the Total value is correct.&lt;BR /&gt;But when i just put Desks in the visual, the results are wrong. For example there are 2 Desks where the linked Project has a distribution of 1. These desks have a value of 574 (total amount of story points for my data). But they should only have the values of the storypoints that were assigned to the project. Also in both Variants it shows the a total amont of 2870 SP, which is wrong(&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&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;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 12 Jul 2023 13:40:58 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Calculate-Values-based-on-a-Distribution-Key-in-a-linked-Table/m-p/3327492#M124622</guid>
      <dc:creator>BIlix</dc:creator>
      <dc:date>2023-07-12T13:40:58Z</dc:date>
    </item>
    <item>
      <title>Re: Calculate Values based on a Distribution Key in a linked Table</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Calculate-Values-based-on-a-Distribution-Key-in-a-linked-Table/m-p/3327584#M124629</link>
      <description>&lt;P&gt;Try&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;Current Measure =
SUMX (
    VALUES ( DimDeskDistribution[Desk] ),
    VAR CurrentProject =
        SELECTEDVALUE ( DimDeskDistribution[Project ID] )
    VAR Result =
        CALCULATE (
            [Storypoint Measure],
            TREATAS ( { CurrentProject }, DimProject[Project ID] )
        )
            * CALCULATE ( MAX ( DimDeskdistribution[DeskDistribution] ) )
    RETURN
        Result
)
&lt;/LI-CODE&gt;</description>
      <pubDate>Wed, 12 Jul 2023 14:14:05 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Calculate-Values-based-on-a-Distribution-Key-in-a-linked-Table/m-p/3327584#M124629</guid>
      <dc:creator>johnt75</dc:creator>
      <dc:date>2023-07-12T14:14:05Z</dc:date>
    </item>
    <item>
      <title>Re: Calculate Values based on a Distribution Key in a linked Table</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Calculate-Values-based-on-a-Distribution-Key-in-a-linked-Table/m-p/3327991#M124645</link>
      <description>&lt;P&gt;Thanks for your reply!&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;Its working great, in a matrix Visual I can breakdown the Projects to the Desks. Also the allocation of the Storypoints is correct.&amp;nbsp;&lt;BR /&gt;Could you explain how the measure can be adjusted to also show proper results in a Visual where only the Desk Column is included? I also need a visual where The desks and their allocated storypoints are included.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 12 Jul 2023 18:32:07 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Calculate-Values-based-on-a-Distribution-Key-in-a-linked-Table/m-p/3327991#M124645</guid>
      <dc:creator>BIlix</dc:creator>
      <dc:date>2023-07-12T18:32:07Z</dc:date>
    </item>
    <item>
      <title>Re: Calculate Values based on a Distribution Key in a linked Table</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Calculate-Values-based-on-a-Distribution-Key-in-a-linked-Table/m-p/3328946#M124690</link>
      <description>&lt;P&gt;I think you could amend it to&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;Current Measure =
SUMX (
    VALUES ( DimDeskDistribution[Desk] ),
    VAR CurrentProject =
        RELATED ( DimDeskDistribution[Project ID] )
    VAR Result =
        CALCULATE (
            [Storypoint Measure],
            TREATAS ( { CurrentProject }, DimProject[Project ID] )
        )
            * CALCULATE ( MAX ( DimDeskdistribution[DeskDistribution] ) )
    RETURN
        Result
)
&lt;/LI-CODE&gt;
&lt;P&gt;That should work in all scenarios.&lt;/P&gt;</description>
      <pubDate>Thu, 13 Jul 2023 08:28:28 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Calculate-Values-based-on-a-Distribution-Key-in-a-linked-Table/m-p/3328946#M124690</guid>
      <dc:creator>johnt75</dc:creator>
      <dc:date>2023-07-13T08:28:28Z</dc:date>
    </item>
    <item>
      <title>Re: Calculate Values based on a Distribution Key in a linked Table</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Calculate-Values-based-on-a-Distribution-Key-in-a-linked-Table/m-p/3329057#M124702</link>
      <description>&lt;P&gt;Unfortunately it does not work.&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;At 'RELATED' I get an error that the column does not exist or does not have any relationship to any table in the context&lt;/P&gt;</description>
      <pubDate>Thu, 13 Jul 2023 09:26:06 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Calculate-Values-based-on-a-Distribution-Key-in-a-linked-Table/m-p/3329057#M124702</guid>
      <dc:creator>BIlix</dc:creator>
      <dc:date>2023-07-13T09:26:06Z</dc:date>
    </item>
    <item>
      <title>Re: Calculate Values based on a Distribution Key in a linked Table</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Calculate-Values-based-on-a-Distribution-Key-in-a-linked-Table/m-p/3329105#M124707</link>
      <description>&lt;P&gt;Try&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;Current Measure =
SUMX (
    SUMMARIZE (
        DimDeskDistribution,
        DimDeskDistribution[Desk],
        DimDeskDistribution[Project ID]
    ),
    VAR CurrentProject = DimDeskDistribution[Project ID]
    VAR Result =
        CALCULATE (
            [Storypoint Measure],
            TREATAS ( { CurrentProject }, DimProject[Project ID] )
        )
            * CALCULATE ( MAX ( DimDeskdistribution[DeskDistribution] ) )
    RETURN
        Result
)
&lt;/LI-CODE&gt;</description>
      <pubDate>Thu, 13 Jul 2023 09:54:09 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Calculate-Values-based-on-a-Distribution-Key-in-a-linked-Table/m-p/3329105#M124707</guid>
      <dc:creator>johnt75</dc:creator>
      <dc:date>2023-07-13T09:54:09Z</dc:date>
    </item>
    <item>
      <title>Re: Calculate Values based on a Distribution Key in a linked Table</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Calculate-Values-based-on-a-Distribution-Key-in-a-linked-Table/m-p/3329169#M124711</link>
      <description>&lt;P&gt;Thanks again for your help. Unfortunately the error persists.&lt;BR /&gt;&lt;BR /&gt;When the measure is used in a visual it only shows values for Project. All values for desk are blank or not recognized&lt;/P&gt;</description>
      <pubDate>Thu, 13 Jul 2023 10:28:40 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Calculate-Values-based-on-a-Distribution-Key-in-a-linked-Table/m-p/3329169#M124711</guid>
      <dc:creator>BIlix</dc:creator>
      <dc:date>2023-07-13T10:28:40Z</dc:date>
    </item>
    <item>
      <title>Re: Calculate Values based on a Distribution Key in a linked Table</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Calculate-Values-based-on-a-Distribution-Key-in-a-linked-Table/m-p/3329208#M124716</link>
      <description>&lt;P&gt;How about&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;Current Measure =
SUMX (
    SUMMARIZE (
        DimDeskDistribution,
        DimDeskDistribution[Desk],
        DimProject[Project ID],
        DimDeskdistribution[DeskDistribution]
    ),
    [Storypoint Measure] * DimDeskdistribution[DeskDistribution]
)
&lt;/LI-CODE&gt;</description>
      <pubDate>Thu, 13 Jul 2023 10:53:52 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Calculate-Values-based-on-a-Distribution-Key-in-a-linked-Table/m-p/3329208#M124716</guid>
      <dc:creator>johnt75</dc:creator>
      <dc:date>2023-07-13T10:53:52Z</dc:date>
    </item>
    <item>
      <title>Re: Calculate Values based on a Distribution Key in a linked Table</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Calculate-Values-based-on-a-Distribution-Key-in-a-linked-Table/m-p/3329378#M124723</link>
      <description>&lt;P&gt;In the PRoject View the results are correct.&lt;BR /&gt;&lt;BR /&gt;when selecting desk, there are also results showing. But they are way too high&lt;/P&gt;</description>
      <pubDate>Thu, 13 Jul 2023 12:30:19 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Calculate-Values-based-on-a-Distribution-Key-in-a-linked-Table/m-p/3329378#M124723</guid>
      <dc:creator>BIlix</dc:creator>
      <dc:date>2023-07-13T12:30:19Z</dc:date>
    </item>
    <item>
      <title>Re: Calculate Values based on a Distribution Key in a linked Table</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Calculate-Values-based-on-a-Distribution-Key-in-a-linked-Table/m-p/3329488#M124736</link>
      <description>&lt;P&gt;Can you share a PBIX with any confidetial information removed ?&lt;/P&gt;</description>
      <pubDate>Thu, 13 Jul 2023 13:28:12 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Calculate-Values-based-on-a-Distribution-Key-in-a-linked-Table/m-p/3329488#M124736</guid>
      <dc:creator>johnt75</dc:creator>
      <dc:date>2023-07-13T13:28:12Z</dc:date>
    </item>
    <item>
      <title>Re: Calculate Values based on a Distribution Key in a linked Table</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Calculate-Values-based-on-a-Distribution-Key-in-a-linked-Table/m-p/3329658#M124754</link>
      <description>&lt;P&gt;Unfortunately not. Could I provide you with any other information which could help?&lt;/P&gt;</description>
      <pubDate>Thu, 13 Jul 2023 14:33:49 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Calculate-Values-based-on-a-Distribution-Key-in-a-linked-Table/m-p/3329658#M124754</guid>
      <dc:creator>BIlix</dc:creator>
      <dc:date>2023-07-13T14:33:49Z</dc:date>
    </item>
    <item>
      <title>Re: Calculate Values based on a Distribution Key in a linked Table</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Calculate-Values-based-on-a-Distribution-Key-in-a-linked-Table/m-p/3329680#M124755</link>
      <description>&lt;P&gt;A picture of the table relationships might help.&lt;/P&gt;</description>
      <pubDate>Thu, 13 Jul 2023 14:44:38 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Calculate-Values-based-on-a-Distribution-Key-in-a-linked-Table/m-p/3329680#M124755</guid>
      <dc:creator>johnt75</dc:creator>
      <dc:date>2023-07-13T14:44:38Z</dc:date>
    </item>
    <item>
      <title>Re: Calculate Values based on a Distribution Key in a linked Table</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Calculate-Values-based-on-a-Distribution-Key-in-a-linked-Table/m-p/3329686#M124756</link>
      <description>&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 13 Jul 2023 14:49:17 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Calculate-Values-based-on-a-Distribution-Key-in-a-linked-Table/m-p/3329686#M124756</guid>
      <dc:creator>BIlix</dc:creator>
      <dc:date>2023-07-13T14:49:17Z</dc:date>
    </item>
    <item>
      <title>Re: Calculate Values based on a Distribution Key in a linked Table</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Calculate-Values-based-on-a-Distribution-Key-in-a-linked-Table/m-p/3329717#M124758</link>
      <description>&lt;P&gt;Do you have any filters or slicers on the other tables which could be affecting the results? Either connected to the fact table or connected to the project table ?&lt;/P&gt;</description>
      <pubDate>Thu, 13 Jul 2023 15:09:38 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Calculate-Values-based-on-a-Distribution-Key-in-a-linked-Table/m-p/3329717#M124758</guid>
      <dc:creator>johnt75</dc:creator>
      <dc:date>2023-07-13T15:09:38Z</dc:date>
    </item>
    <item>
      <title>Re: Calculate Values based on a Distribution Key in a linked Table</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Calculate-Values-based-on-a-Distribution-Key-in-a-linked-Table/m-p/3330767#M124807</link>
      <description>&lt;P&gt;No Filters are activated on the page-&lt;BR /&gt;&lt;BR /&gt;But the measure for calculating the StoryPoints is Calculated by Sum the StoryPoints from the FactTable, filtered by two filters from Dimension Tables which are connected one to many to FactTable.&lt;BR /&gt;&lt;BR /&gt;Calculate(Sum(Fact[Storypoints]), DimStatus[Status] IN {"..."}, DimType[Type] IN {"..."})&lt;/P&gt;</description>
      <pubDate>Fri, 14 Jul 2023 06:55:27 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Calculate-Values-based-on-a-Distribution-Key-in-a-linked-Table/m-p/3330767#M124807</guid>
      <dc:creator>BIlix</dc:creator>
      <dc:date>2023-07-14T06:55:27Z</dc:date>
    </item>
    <item>
      <title>Re: Calculate Values based on a Distribution Key in a linked Table</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Calculate-Values-based-on-a-Distribution-Key-in-a-linked-Table/m-p/3331014#M124823</link>
      <description>&lt;P&gt;I can't see where any problems might be coming from. All I can offer is some general tips on how I would proceed with debugging.&lt;/P&gt;
&lt;P&gt;Run the SUMMARIZE from the code in DAX Studio and see if the resulting table has the values you expect.&lt;/P&gt;
&lt;P&gt;Use Performance Analyzer to grab the code generated for your visual and run it in Tabular Editor 3 so that you can use the Debug Cell functionality to step into the code and see what the filter context is at each stage, and what the intermediate results are.&lt;/P&gt;
&lt;P&gt;Use EVALULATEANDLOG with DAX Debug Output to show the values and filters at different stages.&lt;/P&gt;</description>
      <pubDate>Fri, 14 Jul 2023 09:16:38 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Calculate-Values-based-on-a-Distribution-Key-in-a-linked-Table/m-p/3331014#M124823</guid>
      <dc:creator>johnt75</dc:creator>
      <dc:date>2023-07-14T09:16:38Z</dc:date>
    </item>
    <item>
      <title>Re: Calculate Values based on a Distribution Key in a linked Table</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Calculate-Values-based-on-a-Distribution-Key-in-a-linked-Table/m-p/3338898#M125287</link>
      <description>&lt;P&gt;Hello,&lt;BR /&gt;&lt;BR /&gt;unfortunately i did not manage to get any solution.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;&lt;SPAN class=""&gt;DimDeskDistribution has a many to One Relation to DimProject&lt;BR /&gt;DimProject has a One to Many Relationship to The FactTable&lt;BR /&gt;the FactTable has a MAny to OnE Relationship to DimStatus&lt;BR /&gt;The Storypoints are In The FactTable&lt;BR /&gt;&lt;BR /&gt;The Measure for StorypointsCompleted is: Storypoints Completed = CALCULATE(SUM(Facttable[StoryPoints]), DimStatus[Status] IN {"Closed", "Done/In Production"})&amp;nbsp;&lt;BR /&gt;Could it be because of the Filter Direction? there is only single filtering in the data model&lt;BR /&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;I tried to apply a Crossfilterfunction from DimDeskdistribution to DimProject but did not manage to get any results.&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;When i use the The measure and only Desk in Rows, it returns a single desk with the total amoutn of storypoints for all projects. ITs the desk with the highest ProjectID assignment&lt;/P&gt;</description>
      <pubDate>Wed, 19 Jul 2023 15:00:30 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Calculate-Values-based-on-a-Distribution-Key-in-a-linked-Table/m-p/3338898#M125287</guid>
      <dc:creator>BIlix</dc:creator>
      <dc:date>2023-07-19T15:00:30Z</dc:date>
    </item>
    <item>
      <title>Re: Calculate Values based on a Distribution Key in a linked Table</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Calculate-Values-based-on-a-Distribution-Key-in-a-linked-Table/m-p/3396398#M128115</link>
      <description>&lt;P&gt;Hello again,&lt;BR /&gt;&lt;BR /&gt;i managed to find a solution for the problem:&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Storypoint distributed to Desk = &lt;/SPAN&gt;&lt;SPAN&gt;SUMX&lt;/SPAN&gt;&lt;SPAN&gt; (&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;CALCULATETABLE&lt;/SPAN&gt;&lt;SPAN&gt; (&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;SUMMARIZE&lt;/SPAN&gt;&lt;SPAN&gt; (&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;FILTER&lt;/SPAN&gt;&lt;SPAN&gt; (&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;DimDeskDistribution&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;NOT&lt;/SPAN&gt;&lt;SPAN&gt; ( &lt;/SPAN&gt;&lt;SPAN&gt;ISBLANK&lt;/SPAN&gt;&lt;SPAN&gt; ( &lt;/SPAN&gt;&lt;SPAN&gt;[StorypointMeasure]&lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp;) )&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; ),&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;DimDeskDistribution&lt;/SPAN&gt;&lt;SPAN&gt;[Desk]&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;DimDeskDistribution&lt;/SPAN&gt;&lt;SPAN&gt;[DeskDistribution]&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;DimProject&lt;/SPAN&gt;&lt;SPAN&gt;[ProjectID]&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;DimProject&lt;/SPAN&gt;&lt;SPAN&gt;[Project]&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; ),&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;CROSSFILTER&lt;/SPAN&gt;&lt;SPAN&gt; ( &lt;/SPAN&gt;&lt;SPAN&gt;DimDeskDistribution&lt;/SPAN&gt;&lt;SPAN&gt;[ProjectID]&lt;/SPAN&gt;&lt;SPAN&gt;, &lt;/SPAN&gt;&lt;SPAN&gt;DimProject&lt;/SPAN&gt;&lt;SPAN&gt;[ProjectID]&lt;/SPAN&gt;&lt;SPAN&gt;, &lt;/SPAN&gt;&lt;SPAN&gt;Both&lt;/SPAN&gt;&lt;SPAN&gt; )&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; ),&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;[StorypointMEasre]&lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp;* &lt;/SPAN&gt;&lt;SPAN&gt;DimDeskDistribution&lt;/SPAN&gt;&lt;SPAN&gt;[DeskDistribution]&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;)&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;I now want to distirbute another measure to Desks in a similar way.&lt;BR /&gt;The measure itself are summed up costs from a fact table.&lt;BR /&gt;The Facttable is related many to one to a project2 Dimension.&lt;BR /&gt;The project2dimension is related one to many to the project DImension.&lt;BR /&gt;The Project Dimension is related one to many to The Deskdistribution DImension.&lt;BR /&gt;&lt;BR /&gt;No crossfiltering is enabled. I can not change the Relationships to crossfiltering and should not add more active relationships. Any Ideas how i could get a workaround for my Dax Function? Thanks in advance&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Thu, 24 Aug 2023 07:27:38 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Calculate-Values-based-on-a-Distribution-Key-in-a-linked-Table/m-p/3396398#M128115</guid>
      <dc:creator>BIlix</dc:creator>
      <dc:date>2023-08-24T07:27:38Z</dc:date>
    </item>
  </channel>
</rss>

