<?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: Creating a measure that calls another measure...... in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Creating-a-measure-that-calls-another-measure/m-p/872235#M7236</link>
    <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="110929" data-lia-user-login="DCPics" class="lia-mention lia-mention-user"&gt;DCPics&lt;/a&gt;&amp;nbsp;, you are welcome!&amp;nbsp;&lt;BR /&gt;Try&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="217" data-lia-user-login="MattAllington" class="lia-mention lia-mention-user"&gt;MattAllington&lt;/a&gt;&amp;nbsp;'s book, Supercharge Power BI.&amp;nbsp;&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;Nathaniel&lt;/P&gt;</description>
    <pubDate>Wed, 11 Dec 2019 15:30:28 GMT</pubDate>
    <dc:creator>Nathaniel_C</dc:creator>
    <dc:date>2019-12-11T15:30:28Z</dc:date>
    <item>
      <title>Creating a measure that calls another measure......</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Creating-a-measure-that-calls-another-measure/m-p/869967#M7159</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am hoping you can help me.&amp;nbsp; I have a table with a ton of data and I'm trying to create one measure that calculates what I need correctly.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;So, I have a column named "Key", and based on the value of "Key", I need my other column "Results" to perform the proper math.&amp;nbsp; I have 5 measures created with the proper formulas, however I don't know how to call them.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;My key is either "PAPER-FT", "PAPER-LB", "FILM-FT", "FILM-LB", or "FOAM-LB", and the measures I have created are called the identical name so it stays easy (so I thought).&amp;nbsp; So if Key = "PAPER-FT" I want it to run the calculation in my measure "PAPER-FT", etc.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I konw how to do it with a calculated column, and it works, however it's so big that if I try to add anymore columns my BI crashes and says it is out of memory.&amp;nbsp; I know that's b/c it has to do the math for all those calculations then assign them to each row.&amp;nbsp; That is why I am trying to do this with a measure, but I'm stumped. &amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I hope I explained this clear enough, please let me know if you have any questions, and thank you very much for your help with this!&lt;/P&gt;</description>
      <pubDate>Mon, 09 Dec 2019 19:28:41 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Creating-a-measure-that-calls-another-measure/m-p/869967#M7159</guid>
      <dc:creator>DCPics</dc:creator>
      <dc:date>2019-12-09T19:28:41Z</dc:date>
    </item>
    <item>
      <title>Re: Creating a measure that calls another measure......</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Creating-a-measure-that-calls-another-measure/m-p/870123#M7162</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="110929" data-lia-user-login="DCPics" class="lia-mention lia-mention-user"&gt;DCPics&lt;/a&gt;&lt;/P&gt;&lt;P&gt;Try this: Dummied up two measures and called them from the third.&lt;BR /&gt;Let me know if you have any questions.&lt;BR /&gt;&lt;BR /&gt;If this solves your issues, please mark it as the &lt;STRONG&gt;solution, &lt;/STRONG&gt;so that others can find it easily. &lt;STRONG&gt;Kudos &lt;/STRONG&gt;&lt;span class="lia-unicode-emoji" title=":thumbs_up:"&gt;👍&lt;/span&gt;are nice too.&lt;BR /&gt;Nathaniel&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;Paper-FT calc = 1+2&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;Paper-LB calc = 1-2&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;Results = IF(MAX(myTable[Type])= "Paper-FT",[Paper-FT calc],IF(max(myTable[Type])="Paper-LB",[Paper-LB calc]))​&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;img /&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 09 Dec 2019 23:21:57 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Creating-a-measure-that-calls-another-measure/m-p/870123#M7162</guid>
      <dc:creator>Nathaniel_C</dc:creator>
      <dc:date>2019-12-09T23:21:57Z</dc:date>
    </item>
    <item>
      <title>Re: Creating a measure that calls another measure......</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Creating-a-measure-that-calls-another-measure/m-p/872160#M7234</link>
      <description>&lt;P&gt;Thank you very much for your help with this!&amp;nbsp; I really appreicate it.&amp;nbsp; I didn't realize you could do IF's in a measure.&lt;/P&gt;</description>
      <pubDate>Wed, 11 Dec 2019 14:19:05 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Creating-a-measure-that-calls-another-measure/m-p/872160#M7234</guid>
      <dc:creator>DCPics</dc:creator>
      <dc:date>2019-12-11T14:19:05Z</dc:date>
    </item>
    <item>
      <title>Re: Creating a measure that calls another measure......</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Creating-a-measure-that-calls-another-measure/m-p/872235#M7236</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="110929" data-lia-user-login="DCPics" class="lia-mention lia-mention-user"&gt;DCPics&lt;/a&gt;&amp;nbsp;, you are welcome!&amp;nbsp;&lt;BR /&gt;Try&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="217" data-lia-user-login="MattAllington" class="lia-mention lia-mention-user"&gt;MattAllington&lt;/a&gt;&amp;nbsp;'s book, Supercharge Power BI.&amp;nbsp;&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;Nathaniel&lt;/P&gt;</description>
      <pubDate>Wed, 11 Dec 2019 15:30:28 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Creating-a-measure-that-calls-another-measure/m-p/872235#M7236</guid>
      <dc:creator>Nathaniel_C</dc:creator>
      <dc:date>2019-12-11T15:30:28Z</dc:date>
    </item>
    <item>
      <title>Re: Creating a measure that calls another measure......</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Creating-a-measure-that-calls-another-measure/m-p/872254#M7237</link>
      <description>&lt;P&gt;Thanks for the tip on the book, I'm going to look it up now.&amp;nbsp; Thanks again for the help.&lt;/P&gt;</description>
      <pubDate>Wed, 11 Dec 2019 15:44:28 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Creating-a-measure-that-calls-another-measure/m-p/872254#M7237</guid>
      <dc:creator>DCPics</dc:creator>
      <dc:date>2019-12-11T15:44:28Z</dc:date>
    </item>
  </channel>
</rss>

