<?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: Total value from parameter formula in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Total-value-from-parameter-formula/m-p/1077784#M15156</link>
    <description>&lt;P&gt;hi&amp;nbsp;&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="191290" data-lia-user-login="Calouro" class="lia-mention lia-mention-user"&gt;Calouro&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Essentially,&amp;nbsp;Parameter is just a formula that returns a value.&lt;/P&gt;
&lt;P&gt;so you could nest it into measure expression not just add it in the end of formula&lt;/P&gt;
&lt;P&gt;For example:&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;Measure = SUMX('Table',[Qty]+[Parameter Value])&lt;/LI-CODE&gt;&lt;LI-CODE lang="markup"&gt;Measure 2 = SUMX('Table',[Qty]) +[Parameter Value]&lt;/LI-CODE&gt;
&lt;P&gt;Result:&lt;/P&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If not your case, please share a simple sample pbix file and your expected output.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Regards,&lt;/P&gt;
&lt;P&gt;Lin&lt;/P&gt;</description>
    <pubDate>Thu, 07 May 2020 02:22:49 GMT</pubDate>
    <dc:creator>v-lili6-msft</dc:creator>
    <dc:date>2020-05-07T02:22:49Z</dc:date>
    <item>
      <title>Total value from parameter formula</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Total-value-from-parameter-formula/m-p/1053275#M14439</link>
      <description>&lt;P&gt;Hi, I want to use one of my parameters result in a new calculation, but instead, I am always getting the formula and not the value itself. Does anyone know how to select only the result and not the formula? Thanks&lt;/P&gt;</description>
      <pubDate>Tue, 28 Apr 2020 10:01:25 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Total-value-from-parameter-formula/m-p/1053275#M14439</guid>
      <dc:creator>Calouro</dc:creator>
      <dc:date>2020-04-28T10:01:25Z</dc:date>
    </item>
    <item>
      <title>Re: Total value from parameter formula</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Total-value-from-parameter-formula/m-p/1077784#M15156</link>
      <description>&lt;P&gt;hi&amp;nbsp;&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="191290" data-lia-user-login="Calouro" class="lia-mention lia-mention-user"&gt;Calouro&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Essentially,&amp;nbsp;Parameter is just a formula that returns a value.&lt;/P&gt;
&lt;P&gt;so you could nest it into measure expression not just add it in the end of formula&lt;/P&gt;
&lt;P&gt;For example:&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;Measure = SUMX('Table',[Qty]+[Parameter Value])&lt;/LI-CODE&gt;&lt;LI-CODE lang="markup"&gt;Measure 2 = SUMX('Table',[Qty]) +[Parameter Value]&lt;/LI-CODE&gt;
&lt;P&gt;Result:&lt;/P&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If not your case, please share a simple sample pbix file and your expected output.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Regards,&lt;/P&gt;
&lt;P&gt;Lin&lt;/P&gt;</description>
      <pubDate>Thu, 07 May 2020 02:22:49 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Total-value-from-parameter-formula/m-p/1077784#M15156</guid>
      <dc:creator>v-lili6-msft</dc:creator>
      <dc:date>2020-05-07T02:22:49Z</dc:date>
    </item>
    <item>
      <title>Re: Total value from parameter formula</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Total-value-from-parameter-formula/m-p/1079894#M15209</link>
      <description>&lt;P&gt;Hi, lin,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;thank you for your answer, it is valid and got the point. The parameter can be used or not depending on the purpose.&lt;/P&gt;&lt;P&gt;I believe I have not explained myself correctly the first time.&amp;nbsp;When I said parameter I should have said measure.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;So, I have a measure that has a DIVIDE formula inside and I want to use the result it gets in another formula and not the formula itself.&amp;nbsp;Is this possible?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Example below:&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Measure1 = DIVIDE(('table1'[companyx OPEX] - [measure2]) ; SUM('table1'[cost1])) &amp;lt;=&amp;gt; Measure1 = 50&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 07 May 2020 18:21:06 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Total-value-from-parameter-formula/m-p/1079894#M15209</guid>
      <dc:creator>Calouro</dc:creator>
      <dc:date>2020-05-07T18:21:06Z</dc:date>
    </item>
  </channel>
</rss>

