<?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: summarizing multiple values from different Table within other Table in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/summarizing-multiple-values-from-different-Table-within-other/m-p/2655067#M78423</link>
    <description>&lt;P&gt;apologize, my fault within the words... "&lt;SPAN&gt;1Z32sde" would deliver 500 as "Final cost-summary"&lt;/SPAN&gt;&lt;/P&gt;</description>
    <pubDate>Fri, 22 Jul 2022 08:05:43 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2022-07-22T08:05:43Z</dc:date>
    <item>
      <title>summarizing multiple values from different Table within other Table</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/summarizing-multiple-values-from-different-Table-within-other/m-p/2649609#M78076</link>
      <description>&lt;P&gt;Hi,&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;I do have two tables. one is simply a long list of values structured like below&lt;/P&gt;&lt;TABLE border="1"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;search value&lt;/TD&gt;&lt;TD&gt;cost a&lt;/TD&gt;&lt;TD&gt;cost b&lt;/TD&gt;&lt;TD&gt;final cost&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;1z32sde&lt;/TD&gt;&lt;TD&gt;12&lt;/TD&gt;&lt;TD&gt;32&lt;/TD&gt;&lt;TD&gt;44&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;1z8432&lt;/TD&gt;&lt;TD&gt;12&lt;/TD&gt;&lt;TD&gt;23&lt;/TD&gt;&lt;TD&gt;11&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;in general text-number mix&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;TD&gt;in general a formular calculating different values based on other criteria&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;second table is&lt;/P&gt;&lt;TABLE border="1"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;Info&lt;/TD&gt;&lt;TD&gt;final cost&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;1z32sde&lt;/TD&gt;&lt;TD&gt;44&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;1z8432&lt;/TD&gt;&lt;TD&gt;11&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;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Within the second table i do have an "Info" who may exist twice or multiple times on this table and I do need to search it on the other table in column&amp;nbsp; "Final cost". Those "Final cost" might be already another calculated value but is always a number.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;the Info I do need to search may exist twice, sometimes just once, and sometimes even 10 times, and sometimes does not exist. All Values needs to be summarized and given as feedback on the second table where I do have to use it afterward to do some more calculation. the search value is also something I can not write in the formula and it will be taken of a different column.&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;in Excel it is so easy and iam able to use endless SUMIFS formula referencing to other columns without pain. but thats not how power bi works...&lt;BR /&gt;&lt;BR /&gt;any recommendation?&lt;/P&gt;</description>
      <pubDate>Wed, 20 Jul 2022 08:04:32 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/summarizing-multiple-values-from-different-Table-within-other/m-p/2649609#M78076</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2022-07-20T08:04:32Z</dc:date>
    </item>
    <item>
      <title>Re: summarizing multiple values from different Table within other Table</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/summarizing-multiple-values-from-different-Table-within-other/m-p/2650173#M78096</link>
      <description>&lt;P&gt;Anonymous&lt;/LI-USER&gt; ,&amp;nbsp; Not very clear a new column in table 1 &lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Maxx(filter(Table2, Table1[Search value]&amp;nbsp; = Table2[Info]) , Table2[final Cost])&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If this does not help&lt;BR /&gt;Can you a sample output in table format? &lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;refer 4 ways to copy data from one table to another&lt;BR /&gt;&lt;A href="https://www.youtube.com/watch?v=Wu1mWxR23jU" target="_blank"&gt;https://www.youtube.com/watch?v=Wu1mWxR23jU&lt;/A&gt;&lt;BR /&gt;&lt;A href="https://www.youtube.com/watch?v=czNHt7UXIe8" target="_blank"&gt;https://www.youtube.com/watch?v=czNHt7UXIe8&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 20 Jul 2022 11:01:39 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/summarizing-multiple-values-from-different-Table-within-other/m-p/2650173#M78096</guid>
      <dc:creator>amitchandak</dc:creator>
      <dc:date>2022-07-20T11:01:39Z</dc:date>
    </item>
    <item>
      <title>Re: summarizing multiple values from different Table within other Table</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/summarizing-multiple-values-from-different-Table-within-other/m-p/2650586#M78118</link>
      <description>&lt;P&gt;Hi amitchandak,&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;apologize for not beeing clear enough.&amp;nbsp;&lt;/P&gt;&lt;P&gt;i do build the table in Word, now it also contains the border to make it more clear&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;the second table contains the "Info" i do need to search in the first table in the column "search value" and it shoud Summarize all the "final cost" from the first table and it should be on the second table in column "Final cost - summary" available.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;First table&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;TABLE&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;&lt;P&gt;Search value&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;Cost A&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;Cost B&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;&lt;STRONG&gt;Final cost&lt;/STRONG&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;P&gt;1Z32sde&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;12&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;32&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P class="lia-indent-padding-left-30px"&gt;44&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;P&gt;1z8432&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;12&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;23&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P class="lia-indent-padding-left-30px"&gt;11&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;P&gt;1zwert32456&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;12&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;27&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P class="lia-indent-padding-left-30px"&gt;15&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;P&gt;1z098761&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;43&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;2221&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P class="lia-indent-padding-left-30px"&gt;554&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;P&gt;1z32sde&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;22&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;123&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P class="lia-indent-padding-left-30px"&gt;456&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;In General text-number mix&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;123&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;In general a formular calculating different values based on other criteria&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Second Table&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;TABLE&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;&lt;P&gt;Info&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;&lt;STRONG&gt;Final cost - summary&lt;/STRONG&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;P&gt;1Z32sde&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P class="lia-indent-padding-left-30px"&gt;500&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;P&gt;1zwert32456&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P class="lia-indent-padding-left-30px"&gt;15&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;P&gt;1z098761&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P class="lia-indent-padding-left-30px"&gt;554&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;P&gt;1Z32sde&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P class="lia-indent-padding-left-30px"&gt;500&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;so for the value "1Z32sde" it would deliver 50 as feedback as in the first table are "2" values available summarized together as 500.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;i hope that helps.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;p.s. thanks for the max formular. I do wish power bi would work on mac as well. Then i would be able to play and increase my knowledge in my free time, too.&lt;/P&gt;</description>
      <pubDate>Wed, 20 Jul 2022 16:03:46 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/summarizing-multiple-values-from-different-Table-within-other/m-p/2650586#M78118</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2022-07-20T16:03:46Z</dc:date>
    </item>
    <item>
      <title>Re: summarizing multiple values from different Table within other Table</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/summarizing-multiple-values-from-different-Table-within-other/m-p/2655067#M78423</link>
      <description>&lt;P&gt;apologize, my fault within the words... "&lt;SPAN&gt;1Z32sde" would deliver 500 as "Final cost-summary"&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 22 Jul 2022 08:05:43 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/summarizing-multiple-values-from-different-Table-within-other/m-p/2655067#M78423</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2022-07-22T08:05:43Z</dc:date>
    </item>
    <item>
      <title>Re: summarizing multiple values from different Table within other Table</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/summarizing-multiple-values-from-different-Table-within-other/m-p/2658609#M78731</link>
      <description>&lt;P&gt;Hi&amp;nbsp;Anonymous&lt;/LI-USER&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You can try this code to create a calculated column in second table.&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;Column =
CALCULATE (
    SUM ( 'First Table'[Final cost] ),
    FILTER (
        'First Table',
        CONTAINSSTRING ( 'First Table'[Search value], 'Second Table'[Info] )
    )
)&lt;/LI-CODE&gt;
&lt;P&gt;Result is as below.&lt;/P&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Best Regards,&lt;BR /&gt;Rico Zhou&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&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;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 25 Jul 2022 09:15:45 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/summarizing-multiple-values-from-different-Table-within-other/m-p/2658609#M78731</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2022-07-25T09:15:45Z</dc:date>
    </item>
  </channel>
</rss>

