<?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 SUMX - How do sum information from one table into another in Developer</title>
    <link>https://community.fabric.microsoft.com/t5/Developer/SUMX-How-do-sum-information-from-one-table-into-another/m-p/488338#M14970</link>
    <description>&lt;P&gt;I would like sum in a lookupvalue. Is that possible or is there another command(s) that I need to look at to achieve my desired outcome?&lt;/P&gt;&lt;P&gt;I have a budget table with a field and would like to scan a transaction table with the same field name. How do I sum all the transactions and put the total into the budget table?&lt;/P&gt;&lt;P&gt;&lt;A href="https://i.stack.imgur.com/Ciu8F.png" target="_blank" rel="nofollow noreferrer"&gt;&lt;IMG src="https://ip1.i.lithium.com/20e3cd00d92828b4e295f2b5d8423d8d8502edf5/68747470733a2f2f692e737461636b2e696d6775722e636f6d2f43697538462e706e67" border="0" alt="enter image description here" /&gt;&lt;/A&gt;&lt;/P&gt;&lt;P&gt;I am wanting to sum the transactions to the corresponding field(s) in the Budget Table.&lt;/P&gt;</description>
    <pubDate>Mon, 13 Aug 2018 17:48:41 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2018-08-13T17:48:41Z</dc:date>
    <item>
      <title>SUMX - How do sum information from one table into another</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/SUMX-How-do-sum-information-from-one-table-into-another/m-p/488338#M14970</link>
      <description>&lt;P&gt;I would like sum in a lookupvalue. Is that possible or is there another command(s) that I need to look at to achieve my desired outcome?&lt;/P&gt;&lt;P&gt;I have a budget table with a field and would like to scan a transaction table with the same field name. How do I sum all the transactions and put the total into the budget table?&lt;/P&gt;&lt;P&gt;&lt;A href="https://i.stack.imgur.com/Ciu8F.png" target="_blank" rel="nofollow noreferrer"&gt;&lt;IMG src="https://ip1.i.lithium.com/20e3cd00d92828b4e295f2b5d8423d8d8502edf5/68747470733a2f2f692e737461636b2e696d6775722e636f6d2f43697538462e706e67" border="0" alt="enter image description here" /&gt;&lt;/A&gt;&lt;/P&gt;&lt;P&gt;I am wanting to sum the transactions to the corresponding field(s) in the Budget Table.&lt;/P&gt;</description>
      <pubDate>Mon, 13 Aug 2018 17:48:41 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/SUMX-How-do-sum-information-from-one-table-into-another/m-p/488338#M14970</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-08-13T17:48:41Z</dc:date>
    </item>
    <item>
      <title>Re: SUMX - How do sum information from one table into another</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/SUMX-How-do-sum-information-from-one-table-into-another/m-p/488934#M14985</link>
      <description>&lt;P&gt;Anonymous&lt;/LI-USER&gt;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You may add a calculated column as follows.&lt;/P&gt;
&lt;PRE&gt;Column =
SUMX (
    FILTER ( 'Transaction', 'Transaction'[_link] = Budget[_link] ),
    'Transaction'[_amt]
)
&lt;/PRE&gt;</description>
      <pubDate>Tue, 14 Aug 2018 08:22:57 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/SUMX-How-do-sum-information-from-one-table-into-another/m-p/488934#M14985</guid>
      <dc:creator>v-chuncz-msft</dc:creator>
      <dc:date>2018-08-14T08:22:57Z</dc:date>
    </item>
    <item>
      <title>Re: SUMX - How do sum information from one table into another</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/SUMX-How-do-sum-information-from-one-table-into-another/m-p/490248#M15015</link>
      <description>&lt;P&gt;Thank you for your answer, Sam.&amp;nbsp; I get the following message when I put in the code:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;A single value for column 'Budget Order' in table '_2018_Budget' cannot be determined. This can happen when a measure formula refers to a column that contains many values without specifying an aggregation such as min, max, count, or sum to get a single result.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Any thoughts?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Respectfully,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Jonathan M*&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 15 Aug 2018 11:20:39 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/SUMX-How-do-sum-information-from-one-table-into-another/m-p/490248#M15015</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-08-15T11:20:39Z</dc:date>
    </item>
    <item>
      <title>Re: SUMX - How do sum information from one table into another</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/SUMX-How-do-sum-information-from-one-table-into-another/m-p/490306#M15020</link>
      <description>&lt;P&gt;Your code works like a champ, Sam. Thank you for your time and effort. It is greatly appreciated.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Respectfully,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Jonathan M*&lt;/P&gt;</description>
      <pubDate>Wed, 15 Aug 2018 12:20:43 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/SUMX-How-do-sum-information-from-one-table-into-another/m-p/490306#M15020</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-08-15T12:20:43Z</dc:date>
    </item>
  </channel>
</rss>

