<?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: Create Table from Measure to be used in further calculations in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Create-Table-from-Measure-to-be-used-in-further-calculations/m-p/4598275#M176046</link>
    <description>&lt;P&gt;You want the second version of the code I posted, but replace SUMX with AVERAGEX.&lt;/P&gt;
&lt;P&gt;Make sure to include all the columns in the SUMMARIZE which you have in the matrix visual.&lt;/P&gt;</description>
    <pubDate>Thu, 06 Mar 2025 10:10:38 GMT</pubDate>
    <dc:creator>johnt75</dc:creator>
    <dc:date>2025-03-06T10:10:38Z</dc:date>
    <item>
      <title>Create Table from Measure to be used in further calculations</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Create-Table-from-Measure-to-be-used-in-further-calculations/m-p/4595753#M175984</link>
      <description>&lt;P&gt;I have a measure that displays the following when I plug it into a Matrix.&amp;nbsp;&lt;/P&gt;&lt;P&gt;I want to be able to use the values displayed in a separtate calculation, but plugging the measure in directly doesn't work since the measure needs these other rows and columns to filter properly.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I can export the visual to give me a csv with the correct numbers, but I want to avoid exporting and reintegrating a "new source" just to get the numbers back into PowerBI.&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;</description>
      <pubDate>Wed, 05 Mar 2025 01:29:40 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Create-Table-from-Measure-to-be-used-in-further-calculations/m-p/4595753#M175984</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2025-03-05T01:29:40Z</dc:date>
    </item>
    <item>
      <title>Re: Create Table from Measure to be used in further calculations</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Create-Table-from-Measure-to-be-used-in-further-calculations/m-p/4596353#M176004</link>
      <description>&lt;P&gt;Hi&amp;nbsp;Anonymous&lt;/LI-USER&gt;&amp;nbsp;please check &lt;A href="https://learn.microsoft.com/en-us/dax/calculatetable-function-dax?WT.mc_id=DP-MVP-4025372" target="_self"&gt;link&lt;/A&gt; for CALCULATETABLE function in DAX&lt;/P&gt;</description>
      <pubDate>Wed, 05 Mar 2025 09:36:20 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Create-Table-from-Measure-to-be-used-in-further-calculations/m-p/4596353#M176004</guid>
      <dc:creator>some_bih</dc:creator>
      <dc:date>2025-03-05T09:36:20Z</dc:date>
    </item>
    <item>
      <title>Re: Create Table from Measure to be used in further calculations</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Create-Table-from-Measure-to-be-used-in-further-calculations/m-p/4596849#M176010</link>
      <description>&lt;P&gt;How you approach it depends on what you're trying to do with the values. If you only need to perform the calculation for a certain combination, or combinations, then could store it in a variable like&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;VAR MyValue =
    CALCULATE (
        [My Measure],
        TREATAS (
            { ( "London", "Tops" ), ( "Paris", "Shoes" ) },
            'Store'[Location],
            'Product'[Category]
        )
    )&lt;/LI-CODE&gt;
&lt;P&gt;If you wanted to do sum of all the values, you could do something like&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;My Measure 2 =
VAR MyValue =
    SUMX (
        SUMMARIZE ( 'Table', 'Store'[Location], 'Product'[Category] ),
        [My Measure]
    )
RETURN
    MyValue
&lt;/LI-CODE&gt;</description>
      <pubDate>Wed, 05 Mar 2025 15:30:55 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Create-Table-from-Measure-to-be-used-in-further-calculations/m-p/4596849#M176010</guid>
      <dc:creator>johnt75</dc:creator>
      <dc:date>2025-03-05T15:30:55Z</dc:date>
    </item>
    <item>
      <title>Re: Create Table from Measure to be used in further calculations</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Create-Table-from-Measure-to-be-used-in-further-calculations/m-p/4597391#M176023</link>
      <description>&lt;P&gt;I will eventually want to average the results in each column for each category.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The original measure is based on conditions. For example, if a specific condition is true, calculate the measure, else place a hardcoded value.&lt;/P&gt;&lt;P&gt;I've noticed when I drill up to the Category level, only the "calculated" measure values are taken into account and the hardcoded values are not. I want all the values in a column, calculated or hardcoded, to be averaged for a given category.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 05 Mar 2025 23:27:36 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Create-Table-from-Measure-to-be-used-in-further-calculations/m-p/4597391#M176023</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2025-03-05T23:27:36Z</dc:date>
    </item>
    <item>
      <title>Re: Create Table from Measure to be used in further calculations</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Create-Table-from-Measure-to-be-used-in-further-calculations/m-p/4597395#M176024</link>
      <description>&lt;P&gt;I'm not exactly sure how to implement this with a measure. Eventually, I want to average all the values in a column for a given category.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 05 Mar 2025 23:34:19 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Create-Table-from-Measure-to-be-used-in-further-calculations/m-p/4597395#M176024</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2025-03-05T23:34:19Z</dc:date>
    </item>
    <item>
      <title>Re: Create Table from Measure to be used in further calculations</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Create-Table-from-Measure-to-be-used-in-further-calculations/m-p/4598275#M176046</link>
      <description>&lt;P&gt;You want the second version of the code I posted, but replace SUMX with AVERAGEX.&lt;/P&gt;
&lt;P&gt;Make sure to include all the columns in the SUMMARIZE which you have in the matrix visual.&lt;/P&gt;</description>
      <pubDate>Thu, 06 Mar 2025 10:10:38 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Create-Table-from-Measure-to-be-used-in-further-calculations/m-p/4598275#M176046</guid>
      <dc:creator>johnt75</dc:creator>
      <dc:date>2025-03-06T10:10:38Z</dc:date>
    </item>
    <item>
      <title>Re: Create Table from Measure to be used in further calculations</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Create-Table-from-Measure-to-be-used-in-further-calculations/m-p/4645003#M177830</link>
      <description>&lt;P&gt;&lt;SPAN data-teams="true"&gt;Hi @Anonymous,&lt;BR /&gt;I wanted to check if you had the opportunity to review the information provided by &lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="240987" data-lia-user-login="johnt75" class="lia-mention lia-mention-user"&gt;johnt75&lt;/a&gt;&amp;nbsp;, &lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="555045" data-lia-user-login="some_bih" class="lia-mention lia-mention-user"&gt;some_bih&lt;/a&gt;&amp;nbsp;. Please feel free to contact us if you have any further questions. If the response has addressed your query, please accept it as a solution and give a 'Kudos' so other members can easily find it.&lt;BR /&gt;Thank you.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 09 Apr 2025 12:30:51 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Create-Table-from-Measure-to-be-used-in-further-calculations/m-p/4645003#M177830</guid>
      <dc:creator>v-saisrao-msft</dc:creator>
      <dc:date>2025-04-09T12:30:51Z</dc:date>
    </item>
    <item>
      <title>Re: Create Table from Measure to be used in further calculations</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Create-Table-from-Measure-to-be-used-in-further-calculations/m-p/4652110#M178074</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="976814" data-lia-user-login="Anonymous" class="lia-mention lia-mention-user"&gt;Anonymous&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;May I ask if you have resolved this issue? If so, please mark the helpful reply and accept it as the solution. This will be helpful for other community members who have similar problems to solve it faster.&lt;/P&gt;
&lt;P&gt;Thank you.&lt;/P&gt;
&lt;P&gt;&lt;LI-WRAPPER&gt;&lt;/LI-WRAPPER&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 14 Apr 2025 16:04:09 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Create-Table-from-Measure-to-be-used-in-further-calculations/m-p/4652110#M178074</guid>
      <dc:creator>v-saisrao-msft</dc:creator>
      <dc:date>2025-04-14T16:04:09Z</dc:date>
    </item>
    <item>
      <title>Re: Create Table from Measure to be used in further calculations</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Create-Table-from-Measure-to-be-used-in-further-calculations/m-p/4656793#M178288</link>
      <description>&lt;P&gt;Hi &lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="976814" data-lia-user-login="Anonymous" class="lia-mention lia-mention-user"&gt;Anonymous&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;We haven’t heard back from you regarding your issue. If it has been resolved, please mark the helpful response as the solution and give a ‘Kudos’ to assist others. If you still need support, let us know.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thank you.&lt;/P&gt;</description>
      <pubDate>Thu, 17 Apr 2025 06:20:07 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Create-Table-from-Measure-to-be-used-in-further-calculations/m-p/4656793#M178288</guid>
      <dc:creator>v-saisrao-msft</dc:creator>
      <dc:date>2025-04-17T06:20:07Z</dc:date>
    </item>
  </channel>
</rss>

