<?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: Filtering Map Visual based on info in a table visual which is filtered using the top N filter in Custom Visuals Development Discussion</title>
    <link>https://community.fabric.microsoft.com/t5/Custom-Visuals-Development/Filtering-Map-Visual-based-on-info-in-a-table-visual-which-is/m-p/3632976#M8731</link>
    <description>&lt;P&gt;Well... I continued playing around, and of course right after posting for help (having spent a good 30 minutes seeking a solution) I figured out a solution!&amp;nbsp;&lt;span class="lia-unicode-emoji" title=":face_with_tears_of_joy:"&gt;😂&lt;/span&gt;&lt;/P&gt;&lt;P&gt;I just had to filter the "market" field int he map visual by top N just like I did the table... so obvious now!&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="darcee_0-1704965514418.png" style="width: 400px;"&gt;&lt;img src="https://community.fabric.microsoft.com/t5/image/serverpage/image-id/1023883iFBC535287D0681CC/image-size/medium?v=v2&amp;amp;px=400" role="button" title="darcee_0-1704965514418.png" alt="darcee_0-1704965514418.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Thu, 11 Jan 2024 09:31:57 GMT</pubDate>
    <dc:creator>darcee</dc:creator>
    <dc:date>2024-01-11T09:31:57Z</dc:date>
    <item>
      <title>Filtering Map Visual based on info in a table visual which is filtered using the top N filter</title>
      <link>https://community.fabric.microsoft.com/t5/Custom-Visuals-Development/Filtering-Map-Visual-based-on-info-in-a-table-visual-which-is/m-p/3632929#M8729</link>
      <description />
      <pubDate>Thu, 11 Jan 2024 09:17:32 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Custom-Visuals-Development/Filtering-Map-Visual-based-on-info-in-a-table-visual-which-is/m-p/3632929#M8729</guid>
      <dc:creator>darcee</dc:creator>
      <dc:date>2024-01-11T09:17:32Z</dc:date>
    </item>
    <item>
      <title>Re: Filtering Map Visual based on info in a table visual which is filtered using the top N filter</title>
      <link>https://community.fabric.microsoft.com/t5/Custom-Visuals-Development/Filtering-Map-Visual-based-on-info-in-a-table-visual-which-is/m-p/3632946#M8730</link>
      <description>&lt;P&gt;For some reason I am unable to edit the body in the post, so I'll add details here...&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'm working on a repoort which contains a dimension table of markets (countries) and a fact table with sales information. I have a table visual with countries filtered by top 5 using the Top N filter function. There are also fiscal year filters on the page. I'm trying to create a map visual that responds dynamically to highlight the top 5 countries based on fiscal year selection (as the table does).&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I tried creating a measure to use as a filter for the map, such as the below, but that's not working...&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Top5CountriesNetSalesDynamic =&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;CALCULATE&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;[Net Sales]&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;TOPN&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;5&lt;/SPAN&gt;&lt;SPAN&gt;, &lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;ALL&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;dim_market&lt;/SPAN&gt;&lt;SPAN&gt;[Market]&lt;/SPAN&gt;&lt;SPAN&gt;),&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;CALCULATE&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;[Net Sales]&lt;/SPAN&gt;&lt;SPAN&gt;, &lt;/SPAN&gt;&lt;SPAN&gt;fiscal_year&lt;/SPAN&gt;&lt;SPAN&gt;[fiscal_year]&lt;/SPAN&gt;&lt;SPAN&gt; = &lt;/SPAN&gt;&lt;SPAN&gt;VALUES&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;fiscal_year&lt;/SPAN&gt;&lt;SPAN&gt;[fy_desc]&lt;/SPAN&gt;&lt;SPAN&gt;)),&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;DESC&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; )&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="darcee_0-1704964889731.png" style="width: 400px;"&gt;&lt;img src="https://community.fabric.microsoft.com/t5/image/serverpage/image-id/1023873i48EBF358271D88AE/image-size/medium?v=v2&amp;amp;px=400" role="button" title="darcee_0-1704964889731.png" alt="darcee_0-1704964889731.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 11 Jan 2024 09:22:08 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Custom-Visuals-Development/Filtering-Map-Visual-based-on-info-in-a-table-visual-which-is/m-p/3632946#M8730</guid>
      <dc:creator>darcee</dc:creator>
      <dc:date>2024-01-11T09:22:08Z</dc:date>
    </item>
    <item>
      <title>Re: Filtering Map Visual based on info in a table visual which is filtered using the top N filter</title>
      <link>https://community.fabric.microsoft.com/t5/Custom-Visuals-Development/Filtering-Map-Visual-based-on-info-in-a-table-visual-which-is/m-p/3632976#M8731</link>
      <description>&lt;P&gt;Well... I continued playing around, and of course right after posting for help (having spent a good 30 minutes seeking a solution) I figured out a solution!&amp;nbsp;&lt;span class="lia-unicode-emoji" title=":face_with_tears_of_joy:"&gt;😂&lt;/span&gt;&lt;/P&gt;&lt;P&gt;I just had to filter the "market" field int he map visual by top N just like I did the table... so obvious now!&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="darcee_0-1704965514418.png" style="width: 400px;"&gt;&lt;img src="https://community.fabric.microsoft.com/t5/image/serverpage/image-id/1023883iFBC535287D0681CC/image-size/medium?v=v2&amp;amp;px=400" role="button" title="darcee_0-1704965514418.png" alt="darcee_0-1704965514418.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 11 Jan 2024 09:31:57 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Custom-Visuals-Development/Filtering-Map-Visual-based-on-info-in-a-table-visual-which-is/m-p/3632976#M8731</guid>
      <dc:creator>darcee</dc:creator>
      <dc:date>2024-01-11T09:31:57Z</dc:date>
    </item>
  </channel>
</rss>

