<?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: Summarize table with dynamic filtering in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Summarize-table-with-dynamic-filtering/m-p/2249308#M54075</link>
    <description>&lt;P&gt;Kudos to&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="39298" data-lia-user-login="AlexisOlson" class="lia-mention lia-mention-user"&gt;AlexisOlson&lt;/a&gt;&amp;nbsp;for asking the right question to move this forward!&lt;BR /&gt;&lt;BR /&gt;Rather than TopN do what you want:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;Avg Distance Rank = 
    RANKX(
        ALLSELECTED(Profile[Profile]),
        [Avg Distance],
        ,
        ASC,
        Dense
    )&lt;/LI-CODE&gt;&lt;P&gt;and use it in the visual filter?&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Tue, 21 Dec 2021 08:04:57 GMT</pubDate>
    <dc:creator>bcdobbs</dc:creator>
    <dc:date>2021-12-21T08:04:57Z</dc:date>
    <item>
      <title>Summarize table with dynamic filtering</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Summarize-table-with-dynamic-filtering/m-p/2245993#M53914</link>
      <description>&lt;P&gt;Hello Team, I need some major help to solve this issue. I have a summarized calculated table that I need to be able to filter dynamically. Below is a sample of the calculated table that I have a union joining on. The first table in the union is "Brand EPA" and is an average from the full Brand EPA table.&amp;nbsp;&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;&lt;P&gt;Below is the full Brand EPA table where the summarized calculated table is pulling from however I need a way to have the results be dynamic when I filter on Sex, Age, Education, Income and BrandOwn. This will change the average from being static to dynamic in the summarized table.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;Thanks all,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Sean&lt;/P&gt;</description>
      <pubDate>Sun, 19 Dec 2021 07:13:47 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Summarize-table-with-dynamic-filtering/m-p/2245993#M53914</guid>
      <dc:creator>PBI-Guy</dc:creator>
      <dc:date>2021-12-19T07:13:47Z</dc:date>
    </item>
    <item>
      <title>Re: Summarize table with dynamic filtering</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Summarize-table-with-dynamic-filtering/m-p/2245995#M53915</link>
      <description>&lt;P&gt;A calculated table (and calculated columns) are always formed when the model is refreshed. So by definition are static.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Your options are:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;1) Change the granualarity of your summarised table by adding in&amp;nbsp;&lt;SPAN&gt;Sex, Age, Education, Income and BrandOwn. This means that the average is pre calculated for every combination.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;2) Switch away from a calculated table and make use of measures which are dynamic.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Sun, 19 Dec 2021 07:24:51 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Summarize-table-with-dynamic-filtering/m-p/2245995#M53915</guid>
      <dc:creator>bcdobbs</dc:creator>
      <dc:date>2021-12-19T07:24:51Z</dc:date>
    </item>
    <item>
      <title>Re: Summarize table with dynamic filtering</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Summarize-table-with-dynamic-filtering/m-p/2246000#M53917</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="168297" data-lia-user-login="bcdobbs" class="lia-mention lia-mention-user"&gt;bcdobbs&lt;/a&gt;&amp;nbsp;I originally thought that the use of measures would be better however I don't have the know-how to achieve that hence why I took the calculated table path. Do you have any recommendations?&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 19 Dec 2021 07:38:50 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Summarize-table-with-dynamic-filtering/m-p/2246000#M53917</guid>
      <dc:creator>PBI-Guy</dc:creator>
      <dc:date>2021-12-19T07:38:50Z</dc:date>
    </item>
    <item>
      <title>Re: Summarize table with dynamic filtering</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Summarize-table-with-dynamic-filtering/m-p/2246004#M53918</link>
      <description>&lt;P&gt;Ok, so if you just need a straight average that responds to filters in visuals you can go really simple.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;1) Right click your table and click create measure.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;2) Add measures for each summary you need.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;eg&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Avg Potency = AVERAGE(TableName[Potency])&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Then add a table visual and add your normal columns and the measures at the end.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If you then have slicers for the other things everything will update.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If your requirements are more complex are you able to send a demo file and a requested output. Will happily write some measures for you!&lt;/P&gt;</description>
      <pubDate>Sun, 19 Dec 2021 07:50:48 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Summarize-table-with-dynamic-filtering/m-p/2246004#M53918</guid>
      <dc:creator>bcdobbs</dc:creator>
      <dc:date>2021-12-19T07:50:48Z</dc:date>
    </item>
    <item>
      <title>Re: Summarize table with dynamic filtering</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Summarize-table-with-dynamic-filtering/m-p/2246016#M53919</link>
      <description>&lt;P&gt;I believe what I'm looking for might be a little bit more complex so I will post a sample file asap&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 19 Dec 2021 08:17:44 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Summarize-table-with-dynamic-filtering/m-p/2246016#M53919</guid>
      <dc:creator>PBI-Guy</dc:creator>
      <dc:date>2021-12-19T08:17:44Z</dc:date>
    </item>
    <item>
      <title>Re: Summarize table with dynamic filtering</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Summarize-table-with-dynamic-filtering/m-p/2246295#M53935</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="168297" data-lia-user-login="bcdobbs" class="lia-mention lia-mention-user"&gt;bcdobbs&lt;/a&gt;&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;A title="Sample" href="https://1drv.ms/u/s!Ap_eXUht9lqhhT4VlI7mT6vHYeme?e=ZBN9dl" target="_blank" rel="noopener nofollow noreferrer"&gt;https://1drv.ms/u/s!Ap_eXUht9lqhhT4VlI7mT6vHYeme?e=ZBN9dl&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Please see attached one drive link to the pbix file. I want to be able to summarize the brand dynamically so that when I filter on the survey questions I gives me the proper aggregated averages for the elements 1 -3 in the&amp;nbsp;&lt;SPAN&gt;02Profile_Calculated table which feeds back into the&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;01MergeDataSet which is the table that drives my visuals and filters. I hope this makes sense because I do have a hard time explaining it but if you need more I will do what I can&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Sun, 19 Dec 2021 19:29:17 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Summarize-table-with-dynamic-filtering/m-p/2246295#M53935</guid>
      <dc:creator>PBI-Guy</dc:creator>
      <dc:date>2021-12-19T19:29:17Z</dc:date>
    </item>
    <item>
      <title>Re: Summarize table with dynamic filtering</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Summarize-table-with-dynamic-filtering/m-p/2246306#M53936</link>
      <description>&lt;P&gt;I can't see a&amp;nbsp;&lt;SPAN&gt;02Profile_Calculated in the file you've sent.&lt;BR /&gt;&lt;BR /&gt;At first glance you have lots of dimension tables like Education_tbl but they're not related to your main fact tables. Am I looking at the right version?&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Sun, 19 Dec 2021 19:40:19 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Summarize-table-with-dynamic-filtering/m-p/2246306#M53936</guid>
      <dc:creator>bcdobbs</dc:creator>
      <dc:date>2021-12-19T19:40:19Z</dc:date>
    </item>
    <item>
      <title>Re: Summarize table with dynamic filtering</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Summarize-table-with-dynamic-filtering/m-p/2246350#M53938</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="168297" data-lia-user-login="bcdobbs" class="lia-mention lia-mention-user"&gt;bcdobbs&lt;/a&gt;&amp;nbsp;so sorry wrong version should only be 5 tables in total I replaced the file try again and let me know if you have any issues&lt;/P&gt;&lt;P&gt;&lt;A href="https://1drv.ms/u/s!Ap_eXUht9lqhhT4VlI7mT6vHYeme?e=uEQn4J" target="_blank" rel="noopener"&gt;https://1drv.ms/u/s!Ap_eXUht9lqhhT4VlI7mT6vHYeme?e=uEQn4J&lt;/A&gt;&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;&lt;P&gt;so the goal is to somehow be able to have a measure that can dynamically filter the first union Join for the brands so that the averages change based on the filter context. The second table in the union join is ok. hope this makes sense.&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;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 19 Dec 2021 21:11:36 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Summarize-table-with-dynamic-filtering/m-p/2246350#M53938</guid>
      <dc:creator>PBI-Guy</dc:creator>
      <dc:date>2021-12-19T21:11:36Z</dc:date>
    </item>
    <item>
      <title>Re: Summarize table with dynamic filtering</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Summarize-table-with-dynamic-filtering/m-p/2246377#M53939</link>
      <description>&lt;P&gt;Really sorry I've had a look but I can't follow what you're trying to achieve.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I can see the two tables and the union join between them but they look like very different sets of data so not sure what you're trying to achieve. Can you give a numeric example of an output you would expect based on a particular filter.&lt;/P&gt;</description>
      <pubDate>Sun, 19 Dec 2021 21:50:51 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Summarize-table-with-dynamic-filtering/m-p/2246377#M53939</guid>
      <dc:creator>bcdobbs</dc:creator>
      <dc:date>2021-12-19T21:50:51Z</dc:date>
    </item>
    <item>
      <title>Re: Summarize table with dynamic filtering</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Summarize-table-with-dynamic-filtering/m-p/2246621#M53942</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="168297" data-lia-user-login="bcdobbs" class="lia-mention lia-mention-user"&gt;bcdobbs&lt;/a&gt;&amp;nbsp;ok, I understand but I will try to break it down step by step as easily as I&amp;nbsp; can because I do have a hard time explaining it so here goes.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Step 1: The first table is the Survey table which is the table that has all the data for the master survey taken by various respondents. The Survey has 4 questions that have various responses.&lt;/P&gt;&lt;P&gt;The 3 element fields are scores for each survey respondent.&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;Step 2: The second table is the profile table that has static data for various user profiles. This table is not related to that Survey table but does have the same 3 element fields. However, this table is static and does not change.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Step 3: This is where I need the magic to happen the profile calculated table is the union between the profile table and the survey table to create a new profile table that now includes the summarized average for the 3 elements from the surveys table. So the final output should be a new table or measure that combines the static profile table with the 3 elements and the aggregated brand as shown in the below screenshot.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Filtering: The second thing that I need and where I am stuck is the ability to filter the Survey questions and have that filter adjust the summarized Brand elements.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I hope this helps, its difficult to explain but that is the best I can do. please let me know if you need more context.&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;&lt;P&gt;.&lt;/P&gt;</description>
      <pubDate>Mon, 20 Dec 2021 02:57:49 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Summarize-table-with-dynamic-filtering/m-p/2246621#M53942</guid>
      <dc:creator>PBI-Guy</dc:creator>
      <dc:date>2021-12-20T02:57:49Z</dc:date>
    </item>
    <item>
      <title>Re: Summarize table with dynamic filtering</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Summarize-table-with-dynamic-filtering/m-p/2246911#M53960</link>
      <description>&lt;P&gt;Ok, starting to understand! Not sure it's statistically valid (think you'd at least need the number of respondents for each profile type).That said I'll send you an example measure later this morning that I think does what you're asking.&lt;/P&gt;</description>
      <pubDate>Mon, 20 Dec 2021 07:04:14 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Summarize-table-with-dynamic-filtering/m-p/2246911#M53960</guid>
      <dc:creator>bcdobbs</dc:creator>
      <dc:date>2021-12-20T07:04:14Z</dc:date>
    </item>
    <item>
      <title>Re: Summarize table with dynamic filtering</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Summarize-table-with-dynamic-filtering/m-p/2247207#M53977</link>
      <description>&lt;P&gt;Awesome! I await your reply.&lt;/P&gt;</description>
      <pubDate>Mon, 20 Dec 2021 09:06:20 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Summarize-table-with-dynamic-filtering/m-p/2247207#M53977</guid>
      <dc:creator>PBI-Guy</dc:creator>
      <dc:date>2021-12-20T09:06:20Z</dc:date>
    </item>
    <item>
      <title>Re: Summarize table with dynamic filtering</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Summarize-table-with-dynamic-filtering/m-p/2247253#M53981</link>
      <description>&lt;P&gt;Sorry&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="346055" data-lia-user-login="PBI-Guy" class="lia-mention lia-mention-user"&gt;PBI-Guy&lt;/a&gt;&amp;nbsp;I'm going to have to check out of this one. Have had another look but I just don't understand what you're trying to achieve.&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;DIV class="lia-user-attributes"&gt;&lt;DIV class="lia-user-name"&gt;&lt;SPAN class="UserName lia-user-name lia-user-rank-Super-User"&gt;&lt;SPAN class=""&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="39298" data-lia-user-login="AlexisOlson" class="lia-mention lia-mention-user"&gt;AlexisOlson&lt;/a&gt;&amp;nbsp;don't suppose you could have a look, I'm probably missing something obvious!&lt;BR /&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 20 Dec 2021 09:28:09 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Summarize-table-with-dynamic-filtering/m-p/2247253#M53981</guid>
      <dc:creator>bcdobbs</dc:creator>
      <dc:date>2021-12-20T09:28:09Z</dc:date>
    </item>
    <item>
      <title>Re: Summarize table with dynamic filtering</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Summarize-table-with-dynamic-filtering/m-p/2247969#M53998</link>
      <description>&lt;P&gt;What you're asking for is a dynamic calculated table, which is not possible. So maybe you can explain what your end goal is with this table rather than defining the table as your end goal. What information are you ultimately trying to answer or visualize?&lt;/P&gt;</description>
      <pubDate>Mon, 20 Dec 2021 15:45:11 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Summarize-table-with-dynamic-filtering/m-p/2247969#M53998</guid>
      <dc:creator>AlexisOlson</dc:creator>
      <dc:date>2021-12-20T15:45:11Z</dc:date>
    </item>
    <item>
      <title>Re: Summarize table with dynamic filtering</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Summarize-table-with-dynamic-filtering/m-p/2248342#M54017</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="39298" data-lia-user-login="AlexisOlson" class="lia-mention lia-mention-user"&gt;AlexisOlson&lt;/a&gt;&amp;nbsp;a thanks for chiming in on this. Essentially I need to be able to some how combined the all the static values from the profile table (profile | element1 | element2 | element3) with the aggregated averages for the same three elements from the survey respondents. Without getting too much into the nitty-gritty I'm using a Euclidean distance formula that shows me the distance from the survey elements to the profile elements. An example of this would be for all the respondents in the survey under brand number one if we were to look at their three elements (which could change dynamicly based on the filtering of the question in the survey) what would the closest distance be from the profiles in the other table essentially ranking them by distance order.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 20 Dec 2021 19:29:42 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Summarize-table-with-dynamic-filtering/m-p/2248342#M54017</guid>
      <dc:creator>PBI-Guy</dc:creator>
      <dc:date>2021-12-20T19:29:42Z</dc:date>
    </item>
    <item>
      <title>Re: Summarize table with dynamic filtering</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Summarize-table-with-dynamic-filtering/m-p/2248440#M54026</link>
      <description>&lt;P&gt;OK. We can certainly compute distances without needing an extra calculated table in the model. For example,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="php"&gt;Closest Profile =
VAR E1 = AVERAGE ( Survey[Element1] )
VAR E2 = AVERAGE ( Survey[Element2] )
VAR E3 = AVERAGE ( Survey[Element3] )
RETURN
    MINX (
        TOPN (
            1,
            Profile,
            ( E1 - Profile[_Element1] ) ^ 2 +
			( E1 - Profile[_Element1] ) ^ 2 +
			( E1 - Profile[_Element1] ) ^ 2,
			ASC
        ),
        Profile[Profile]
    )&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You can make all this dynamic without a calculated table:&lt;/P&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;See attached.&lt;/P&gt;</description>
      <pubDate>Mon, 20 Dec 2021 20:56:25 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Summarize-table-with-dynamic-filtering/m-p/2248440#M54026</guid>
      <dc:creator>AlexisOlson</dc:creator>
      <dc:date>2021-12-20T20:56:25Z</dc:date>
    </item>
    <item>
      <title>Re: Summarize table with dynamic filtering</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Summarize-table-with-dynamic-filtering/m-p/2248507#M54032</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="39298" data-lia-user-login="AlexisOlson" class="lia-mention lia-mention-user"&gt;AlexisOlson&lt;/a&gt;&amp;nbsp; my goodness thanks so much! this gets me much closer now. the only issue I have is I need to plot it on a scatter chart like below.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;And I also need to make the top N variable between 5-10&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;Thanks again Alexis&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 20 Dec 2021 21:37:25 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Summarize-table-with-dynamic-filtering/m-p/2248507#M54032</guid>
      <dc:creator>PBI-Guy</dc:creator>
      <dc:date>2021-12-20T21:37:25Z</dc:date>
    </item>
    <item>
      <title>Re: Summarize table with dynamic filtering</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Summarize-table-with-dynamic-filtering/m-p/2248513#M54034</link>
      <description>&lt;P&gt;Top N what though? What measure does it affect (or do you just want to limit the rows showing up on the right)?&lt;/P&gt;</description>
      <pubDate>Mon, 20 Dec 2021 21:44:33 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Summarize-table-with-dynamic-filtering/m-p/2248513#M54034</guid>
      <dc:creator>AlexisOlson</dc:creator>
      <dc:date>2021-12-20T21:44:33Z</dc:date>
    </item>
    <item>
      <title>Re: Summarize table with dynamic filtering</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Summarize-table-with-dynamic-filtering/m-p/2248531#M54038</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="39298" data-lia-user-login="AlexisOlson" class="lia-mention lia-mention-user"&gt;AlexisOlson&lt;/a&gt;&amp;nbsp;It would affect the "closest profile" measure to limit how many rows are showing (Dynamic between 5-10).&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 20 Dec 2021 23:01:16 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Summarize-table-with-dynamic-filtering/m-p/2248531#M54038</guid>
      <dc:creator>PBI-Guy</dc:creator>
      <dc:date>2021-12-20T23:01:16Z</dc:date>
    </item>
    <item>
      <title>Re: Summarize table with dynamic filtering</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Summarize-table-with-dynamic-filtering/m-p/2249308#M54075</link>
      <description>&lt;P&gt;Kudos to&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="39298" data-lia-user-login="AlexisOlson" class="lia-mention lia-mention-user"&gt;AlexisOlson&lt;/a&gt;&amp;nbsp;for asking the right question to move this forward!&lt;BR /&gt;&lt;BR /&gt;Rather than TopN do what you want:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;Avg Distance Rank = 
    RANKX(
        ALLSELECTED(Profile[Profile]),
        [Avg Distance],
        ,
        ASC,
        Dense
    )&lt;/LI-CODE&gt;&lt;P&gt;and use it in the visual filter?&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 21 Dec 2021 08:04:57 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Summarize-table-with-dynamic-filtering/m-p/2249308#M54075</guid>
      <dc:creator>bcdobbs</dc:creator>
      <dc:date>2021-12-21T08:04:57Z</dc:date>
    </item>
  </channel>
</rss>

