<?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: In a Matrix hierarchy, alter one node to a desired value in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/In-a-Matrix-hierarchy-alter-one-node-to-a-desired-value/m-p/4075052#M161789</link>
    <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="432627" data-lia-user-login="Petr_M" class="lia-mention lia-mention-user"&gt;Petr_M&lt;/a&gt;&amp;nbsp;,&lt;BR /&gt;Thank you for your sample pbix file, please try following measure to check the result:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;MeasureTotal = 
VAR Denominator=CALCULATE([RWA Digit Actual],
    FILTER(
        'digit_database',
        'digit_database'[NWU]= "B" &amp;amp;&amp;amp; 'digit_database'[RWA_TYPE] = "X"
    ))
VAR Ratio = 24/Denominator

VAR TotalSales=SUMX(
   SUMMARIZE(
       digit_database,
       digit_database[NWU],digit_database[RWA_TYPE],
       "CalculatedValue",
       IF(
           SELECTEDVALUE(digit_database[NWU]) = "B",
           SWITCH(digit_database[RWA_TYPE],"X",
           SUMX(
               FILTER(digit_database, digit_database[NWU] = "B"  ),
               [RWA Digit Actual] * Ratio
           ),[RWA Digit Actual]),
           SUMX(
               FILTER(digit_database, digit_database[NWU] &amp;lt;&amp;gt; "B"),
               [RWA Digit Actual]
           )
       )
   ),
   [CalculatedValue]
)
RETURN TotalSales&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;Best regards,&lt;/P&gt;
&lt;P&gt;Joyce&lt;/P&gt;
&lt;P&gt;If this post &lt;STRONG&gt;helps&lt;/STRONG&gt;, then please consider &lt;STRONG&gt;Accept it as the solution&lt;/STRONG&gt; to help the other members find it more quickly.&lt;/P&gt;</description>
    <pubDate>Fri, 02 Aug 2024 08:47:07 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2024-08-02T08:47:07Z</dc:date>
    <item>
      <title>In a Matrix hierarchy, alter one node to a desired value</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/In-a-Matrix-hierarchy-alter-one-node-to-a-desired-value/m-p/4048535#M160603</link>
      <description>&lt;P&gt;I have a matrix of sales in a hierarchy.&lt;/P&gt;&lt;P&gt;For the SubCategory&amp;nbsp;&lt;STRONG&gt;x,&lt;/STRONG&gt; I want to correct the value 16 to a more up-to-date &lt;STRONG&gt;24.&lt;/STRONG&gt; So I want to normalize that node and all its children by a factor 24/16. I think I'm able to do that part.&lt;/P&gt;&lt;P&gt;What I cannot figure out is &lt;STRONG&gt;adjusting the parent node and the total.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;Any help would be highly appreciated.&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, 19 Jul 2024 12:07:55 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/In-a-Matrix-hierarchy-alter-one-node-to-a-desired-value/m-p/4048535#M160603</guid>
      <dc:creator>Petr_M</dc:creator>
      <dc:date>2024-07-19T12:07:55Z</dc:date>
    </item>
    <item>
      <title>Re: In a Matrix hierarchy, alter one node to a desired value</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/In-a-Matrix-hierarchy-alter-one-node-to-a-desired-value/m-p/4050331#M160688</link>
      <description>&lt;P&gt;Hi &lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="432627" data-lia-user-login="Petr_M" class="lia-mention lia-mention-user"&gt;Petr_M&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;For your requirements, please create a new calculated column as shown below:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;Result =

VAR XSub =

CALCULATE(

    SUM('Table'[Sales]),

    FILTER(

        'Table',

        'Table'[SubCategory] = "X"

    )

)

VAR Divb = 24/XSub

VAR TotalSales =

IF(

    'Table'[SubCategory]= "X",

    'Table'[Sales] * Divb,

    'Table'[Sales]

)

RETURN

TotalSales&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Result:&lt;/P&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;Best regards,&lt;/P&gt;
&lt;P&gt;Joyce&lt;/P&gt;
&lt;P&gt;If this post &lt;STRONG&gt;helps&lt;/STRONG&gt;, then please consider &lt;STRONG&gt;Accept it as the solution&lt;/STRONG&gt; to help the other members find it more quickly.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 19 Jul 2024 08:55:58 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/In-a-Matrix-hierarchy-alter-one-node-to-a-desired-value/m-p/4050331#M160688</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2024-07-19T08:55:58Z</dc:date>
    </item>
    <item>
      <title>Re: In a Matrix hierarchy, alter one node to a desired value</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/In-a-Matrix-hierarchy-alter-one-node-to-a-desired-value/m-p/4050668#M160718</link>
      <description>&lt;P&gt;Thank you&amp;nbsp;Anonymous&lt;/a&gt;, this looks promising!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I only added the Category into identification of the node (as X may occur in other Categories as well) and it works perfectly.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;However, my real life scenario works with a measure instead of Sales. I should have realized this was relevant to my question. I attempted to apply the proposed logic there but my calculated column returns nothing. So I assume it needs to be a measure as well which likely changes the context and would require a more complex solution :/.&lt;/P&gt;</description>
      <pubDate>Fri, 19 Jul 2024 12:09:20 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/In-a-Matrix-hierarchy-alter-one-node-to-a-desired-value/m-p/4050668#M160718</guid>
      <dc:creator>Petr_M</dc:creator>
      <dc:date>2024-07-19T12:09:20Z</dc:date>
    </item>
    <item>
      <title>Re: In a Matrix hierarchy, alter one node to a desired value</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/In-a-Matrix-hierarchy-alter-one-node-to-a-desired-value/m-p/4053516#M160857</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="432627" data-lia-user-login="Petr_M" class="lia-mention lia-mention-user"&gt;Petr_M&lt;/a&gt;&amp;nbsp;,&lt;BR /&gt;Thank you for your reply and if possible, please upload your pbix example file so we can better test it for you.&lt;/P&gt;</description>
      <pubDate>Mon, 22 Jul 2024 08:48:19 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/In-a-Matrix-hierarchy-alter-one-node-to-a-desired-value/m-p/4053516#M160857</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2024-07-22T08:48:19Z</dc:date>
    </item>
    <item>
      <title>Re: In a Matrix hierarchy, alter one node to a desired value</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/In-a-Matrix-hierarchy-alter-one-node-to-a-desired-value/m-p/4069031#M161546</link>
      <description>&lt;P&gt;Sorry for the delay in getting back to you! I had some busy days and had to strip my pbix of useless and confidential data.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;On the right, there is your working example.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;On the left, I'm attempting to replicate it in a more complex scenario. I have a digit_database fact table with three months. I choose the Actual month and want to display the original data (Act) and the Result which has the value of B/X node and its children normalized to given B/X sum.&lt;BR /&gt;I have different hierarchy level names (UNIT, RWA_TYPE, Segment1) and the hierarchy is defined outside of the fact table. So far, I was unable to figure this out.&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;A href="https://1drv.ms/u/s!AloJGE1RBEduvhQQlHhvtgySOGph?e=rRZobV" target="_self"&gt;Example.pbix&lt;/A&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 30 Jul 2024 11:12:38 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/In-a-Matrix-hierarchy-alter-one-node-to-a-desired-value/m-p/4069031#M161546</guid>
      <dc:creator>Petr_M</dc:creator>
      <dc:date>2024-07-30T11:12:38Z</dc:date>
    </item>
    <item>
      <title>Re: In a Matrix hierarchy, alter one node to a desired value</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/In-a-Matrix-hierarchy-alter-one-node-to-a-desired-value/m-p/4075052#M161789</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="432627" data-lia-user-login="Petr_M" class="lia-mention lia-mention-user"&gt;Petr_M&lt;/a&gt;&amp;nbsp;,&lt;BR /&gt;Thank you for your sample pbix file, please try following measure to check the result:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;MeasureTotal = 
VAR Denominator=CALCULATE([RWA Digit Actual],
    FILTER(
        'digit_database',
        'digit_database'[NWU]= "B" &amp;amp;&amp;amp; 'digit_database'[RWA_TYPE] = "X"
    ))
VAR Ratio = 24/Denominator

VAR TotalSales=SUMX(
   SUMMARIZE(
       digit_database,
       digit_database[NWU],digit_database[RWA_TYPE],
       "CalculatedValue",
       IF(
           SELECTEDVALUE(digit_database[NWU]) = "B",
           SWITCH(digit_database[RWA_TYPE],"X",
           SUMX(
               FILTER(digit_database, digit_database[NWU] = "B"  ),
               [RWA Digit Actual] * Ratio
           ),[RWA Digit Actual]),
           SUMX(
               FILTER(digit_database, digit_database[NWU] &amp;lt;&amp;gt; "B"),
               [RWA Digit Actual]
           )
       )
   ),
   [CalculatedValue]
)
RETURN TotalSales&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;Best regards,&lt;/P&gt;
&lt;P&gt;Joyce&lt;/P&gt;
&lt;P&gt;If this post &lt;STRONG&gt;helps&lt;/STRONG&gt;, then please consider &lt;STRONG&gt;Accept it as the solution&lt;/STRONG&gt; to help the other members find it more quickly.&lt;/P&gt;</description>
      <pubDate>Fri, 02 Aug 2024 08:47:07 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/In-a-Matrix-hierarchy-alter-one-node-to-a-desired-value/m-p/4075052#M161789</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2024-08-02T08:47:07Z</dc:date>
    </item>
    <item>
      <title>Re: In a Matrix hierarchy, alter one node to a desired value</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/In-a-Matrix-hierarchy-alter-one-node-to-a-desired-value/m-p/4075471#M161815</link>
      <description>&lt;P&gt;Thank you, I really appreciate the time you put into this. That's some advanced stuff, I wouldn't be able to come up with.&lt;BR /&gt;At a first glance, however, the desired B/X sum seems to be 24.09 rather than 24.00. And the&lt;/P&gt;&lt;PRE&gt;[RWA Digit Actual] * 3&lt;/PRE&gt;&lt;P&gt;part looks a bit suspicious to me.&lt;/P&gt;</description>
      <pubDate>Fri, 02 Aug 2024 08:21:50 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/In-a-Matrix-hierarchy-alter-one-node-to-a-desired-value/m-p/4075471#M161815</guid>
      <dc:creator>Petr_M</dc:creator>
      <dc:date>2024-08-02T08:21:50Z</dc:date>
    </item>
    <item>
      <title>Re: In a Matrix hierarchy, alter one node to a desired value</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/In-a-Matrix-hierarchy-alter-one-node-to-a-desired-value/m-p/4075530#M161819</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="432627" data-lia-user-login="Petr_M" class="lia-mention lia-mention-user"&gt;Petr_M&lt;/a&gt;&amp;nbsp;，&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;Sorry for forgetting to change the test data, I've updated the above reply to the correct version.&lt;/P&gt;
&lt;P&gt;Best regards,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Joyce&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.&lt;/P&gt;</description>
      <pubDate>Fri, 02 Aug 2024 08:40:00 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/In-a-Matrix-hierarchy-alter-one-node-to-a-desired-value/m-p/4075530#M161819</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2024-08-02T08:40:00Z</dc:date>
    </item>
    <item>
      <title>Re: In a Matrix hierarchy, alter one node to a desired value</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/In-a-Matrix-hierarchy-alter-one-node-to-a-desired-value/m-p/4075673#M161824</link>
      <description>&lt;P&gt;I tried to change the 3 to Denominator before, but this leads to everything under X being 24.&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 02 Aug 2024 09:49:55 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/In-a-Matrix-hierarchy-alter-one-node-to-a-desired-value/m-p/4075673#M161824</guid>
      <dc:creator>Petr_M</dc:creator>
      <dc:date>2024-08-02T09:49:55Z</dc:date>
    </item>
    <item>
      <title>Re: In a Matrix hierarchy, alter one node to a desired value</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/In-a-Matrix-hierarchy-alter-one-node-to-a-desired-value/m-p/4079316#M161961</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="432627" data-lia-user-login="Petr_M" class="lia-mention lia-mention-user"&gt;Petr_M&lt;/a&gt;&amp;nbsp;,&lt;BR /&gt;Use the &lt;STRONG&gt;&lt;A href="https://learn.microsoft.com/en-us/dax/all-function-dax" target="_self"&gt;All&lt;/A&gt; &lt;/STRONG&gt;function to ignore&amp;nbsp;any filters that might have been applied during calculate&amp;nbsp;&lt;/P&gt;
&lt;DIV&gt;&lt;SPAN&gt;&lt;SPAN&gt;denominator.&lt;BR /&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;
&lt;DIV&gt;&lt;BR /&gt;MeasureTotal = &lt;BR /&gt;VAR Denominator=CALCULATE([RWA Digit Actual],&lt;BR /&gt;FILTER(&lt;BR /&gt;ALL('digit_database'),&lt;BR /&gt;'digit_database'[NWU]= "B" &amp;amp;&amp;amp; 'digit_database'[RWA_TYPE] = "X"&lt;BR /&gt;))&lt;BR /&gt;VAR Ratio = 24/Denominator&lt;BR /&gt;VAR TotalSales=SUMX(&lt;BR /&gt;SUMMARIZE(&lt;BR /&gt;digit_database,&lt;BR /&gt;digit_database[NWU],digit_database[RWA_TYPE],&lt;BR /&gt;"CalculatedValue",&lt;BR /&gt;IF(&lt;BR /&gt;SELECTEDVALUE(digit_database[NWU]) = "B",&lt;BR /&gt;SWITCH(digit_database[RWA_TYPE],"X",&lt;BR /&gt;SUMX(&lt;BR /&gt;FILTER(digit_database, digit_database[NWU] = "B" ),&lt;BR /&gt;[RWA Digit Actual] * Ratio&lt;BR /&gt;),[RWA Digit Actual]),&lt;BR /&gt;SUMX(&lt;BR /&gt;FILTER(digit_database, digit_database[NWU] &amp;lt;&amp;gt; "B"),&lt;BR /&gt;[RWA Digit Actual]&lt;BR /&gt;)&lt;BR /&gt;)&lt;BR /&gt;),&lt;BR /&gt;[CalculatedValue]&lt;BR /&gt;)&lt;BR /&gt;RETURN TotalSales&lt;/DIV&gt;
&lt;DIV&gt;&lt;BR /&gt;&lt;STRONG&gt;Another simple measure for your reference:&lt;/STRONG&gt;&lt;BR /&gt;
&lt;DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt;Measure&lt;/SPAN&gt;&lt;SPAN&gt; = &lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt;VAR&lt;/SPAN&gt;&lt;SPAN&gt; Denominator = &lt;/SPAN&gt;&lt;SPAN&gt;CALCULATE&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp;[RWA Digit Actual],&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt;&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;&lt;/SPAN&gt;&lt;SPAN&gt;ALL&lt;/SPAN&gt;&lt;SPAN&gt;('digit_database'),&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;'digit_database'[NWU] = &lt;/SPAN&gt;&lt;SPAN&gt;"B"&lt;/SPAN&gt;&lt;SPAN&gt; &amp;amp;&amp;amp; 'digit_database'[RWA_TYPE] = &lt;/SPAN&gt;&lt;SPAN&gt;"X"&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;)&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt;VAR&lt;/SPAN&gt;&lt;SPAN&gt; Ratio = &lt;/SPAN&gt;&lt;SPAN&gt;24&lt;/SPAN&gt;&lt;SPAN&gt; / Denominator&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt;RETURN&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;ADDCOLUMNS&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;digit_database,&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;"CalculatedValue"&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;IF&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;[NWU] = &lt;/SPAN&gt;&lt;SPAN&gt;"B"&lt;/SPAN&gt;&lt;SPAN&gt; &amp;amp;&amp;amp; [RWA_TYPE] = &lt;/SPAN&gt;&lt;SPAN&gt;"X"&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;[RWA Digit Actual] * Ratio,&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;[RWA Digit Actual]&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;),&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp;[CalculatedValue]&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt;&lt;SPAN&gt;)&lt;BR /&gt;&lt;STRONG&gt;Result:&lt;/STRONG&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;img /&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt;Best regards,&lt;/SPAN&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Joyce&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If this post &lt;STRONG&gt;helps, t&lt;/STRONG&gt;hen please consider&lt;STRONG&gt;Accept it as the solution &lt;/STRONG&gt;to help the other members find it more quickly.&lt;/P&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;</description>
      <pubDate>Mon, 05 Aug 2024 02:16:46 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/In-a-Matrix-hierarchy-alter-one-node-to-a-desired-value/m-p/4079316#M161961</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2024-08-05T02:16:46Z</dc:date>
    </item>
    <item>
      <title>Re: In a Matrix hierarchy, alter one node to a desired value</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/In-a-Matrix-hierarchy-alter-one-node-to-a-desired-value/m-p/4091898#M162388</link>
      <description>&lt;P&gt;Thank you so much, works perfectly!&lt;/P&gt;</description>
      <pubDate>Fri, 09 Aug 2024 13:54:11 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/In-a-Matrix-hierarchy-alter-one-node-to-a-desired-value/m-p/4091898#M162388</guid>
      <dc:creator>Petr_M</dc:creator>
      <dc:date>2024-08-09T13:54:11Z</dc:date>
    </item>
  </channel>
</rss>

