<?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: Dynamic Top 5/Bottom 5 Visuals Using Field Parameters &amp;amp; Measures in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dynamic-Top-5-Bottom-5-Visuals-Using-Field-Parameters-amp/m-p/4864541#M185523</link>
    <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="1381662" data-lia-user-login="LewisSW" class="lia-mention lia-mention-user"&gt;LewisSW&lt;/a&gt;&amp;nbsp;,&lt;BR /&gt;May I know if your issue has been resolved, or do you still need any additional details. Please let us know if you require any further information.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thank You.&lt;/P&gt;</description>
    <pubDate>Mon, 03 Nov 2025 05:13:37 GMT</pubDate>
    <dc:creator>V-yubandi-msft</dc:creator>
    <dc:date>2025-11-03T05:13:37Z</dc:date>
    <item>
      <title>Dynamic Top 5/Bottom 5 Visuals Using Field Parameters &amp; Measures</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dynamic-Top-5-Bottom-5-Visuals-Using-Field-Parameters-amp/m-p/4861605#M185442</link>
      <description>&lt;P&gt;Hi all,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'm trying to create a P&amp;amp;L report where users can switch between 3 KPIs (Sales, Gross Profit, Cash Contribution) using a field parameter. I have separate measures for each KPI that calculates the TY vs. LY delta:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;_Total_CashContribution_Delta =
VAR _KPI = "Cash Contribution"
VAR TY = CALCULATE([Sum of GBP Amount BFX], 'D-SHOP_REPORTING_SORT'[Reporting Row Name] = _KPI) * -1
VAR LY = CALCULATE(
    [Sum of GBP Amount BFX],
    'D-SHOP_REPORTING_SORT'[Reporting Row Name] = _KPI,
    FILTER(
        ALL('D-FISCAL_YEAR'),
        'D-FISCAL_YEAR'[Fiscal Year] = 'D-SELECTED_BASE_YEAR'[Selected Base Year Measure Fiscal Year]
    )
) * -1
RETURN
TY - LY&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I created a field parameter _KPI_Row like this:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;_KPI_Row = {
    ("Sales", NAMEOF('_MEASURES'[_Total_Sales_Delta]), 0),
    ("Gross Profit", NAMEOF('_MEASURES'[_Total_GrossProfit_Delta]), 1),
    ("Cash Contribution", NAMEOF('_MEASURES'[_Total_CashContribution_Delta]), 2)
}&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I've created a Shop bar chart that uses _KPI_Row as a slicer to switch between sales, GP, cc deltas.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;I want to create a report tooltip so that when a user hovers over a shop, it shows Top 5 and Bottom 5 GL accounts (separate bar charts) that drive the selected KPI delta for that shop. For example, if Shop 5 has the highest Sales delta, the tooltip would show which GL accounts contributed the most or least to that delta.&lt;/P&gt;&lt;P&gt;I’m not sure how to make the tooltip visuals dynamic based on both the selected KPI (via the field parameter) and the selected shop.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Any guidance or examples would be greatly appreciated!&lt;/P&gt;</description>
      <pubDate>Wed, 29 Oct 2025 12:21:01 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dynamic-Top-5-Bottom-5-Visuals-Using-Field-Parameters-amp/m-p/4861605#M185442</guid>
      <dc:creator>LewisSW</dc:creator>
      <dc:date>2025-10-29T12:21:01Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamic Top 5/Bottom 5 Visuals Using Field Parameters &amp; Measures</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dynamic-Top-5-Bottom-5-Visuals-Using-Field-Parameters-amp/m-p/4861809#M185447</link>
      <description>&lt;P data-start="96" data-end="106"&gt;Hey there,&lt;/P&gt;
&lt;P data-start="108" data-end="474"&gt;you’ll want to create a new page and set it up as a tooltip. Then, add a bar chart and use the field parameter for the data you want to display. To ensure consistency, sync a slicer on the new page with the slicer on your main page, so the same measure is selected in the tooltip bar chart. Lastly, configure the bar chart to display only the top and bottom 5 items.&lt;/P&gt;</description>
      <pubDate>Wed, 29 Oct 2025 16:14:05 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dynamic-Top-5-Bottom-5-Visuals-Using-Field-Parameters-amp/m-p/4861809#M185447</guid>
      <dc:creator>Gabry</dc:creator>
      <dc:date>2025-10-29T16:14:05Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamic Top 5/Bottom 5 Visuals Using Field Parameters &amp; Measures</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dynamic-Top-5-Bottom-5-Visuals-Using-Field-Parameters-amp/m-p/4862237#M185462</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="1381662" data-lia-user-login="LewisSW" class="lia-mention lia-mention-user"&gt;LewisSW&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;The suggestion from &lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="470368" data-lia-user-login="Gabry" class="lia-mention lia-mention-user"&gt;Gabry&lt;/a&gt;&amp;nbsp;, is spot on and should help you achieve the dynamic tooltip behavior you need.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Additionally, if you plan to display both the Top 5 and Bottom 5 GL accounts, you might want to use a RANKX-based measure to handle those visuals. This allows you to filter for the top 5 and bottom 5 ranks based on the selected KPI delta.&lt;BR /&gt;&lt;STRONG&gt;Helpful reference:&amp;nbsp;&lt;A href="https://learn.microsoft.com/en-us/dax/rankx-function-dax" target="_blank"&gt;RANKX function (DAX) - DAX | Microsoft Learn&lt;/A&gt;&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;Thanks for your prompt reply,&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="470368" data-lia-user-login="Gabry" class="lia-mention lia-mention-user"&gt;Gabry&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;Regards, &lt;BR /&gt;Yugandhar.&lt;/P&gt;</description>
      <pubDate>Thu, 30 Oct 2025 09:11:08 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dynamic-Top-5-Bottom-5-Visuals-Using-Field-Parameters-amp/m-p/4862237#M185462</guid>
      <dc:creator>V-yubandi-msft</dc:creator>
      <dc:date>2025-10-30T09:11:08Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamic Top 5/Bottom 5 Visuals Using Field Parameters &amp; Measures</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dynamic-Top-5-Bottom-5-Visuals-Using-Field-Parameters-amp/m-p/4864541#M185523</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="1381662" data-lia-user-login="LewisSW" class="lia-mention lia-mention-user"&gt;LewisSW&lt;/a&gt;&amp;nbsp;,&lt;BR /&gt;May I know if your issue has been resolved, or do you still need any additional details. Please let us know if you require any further information.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thank You.&lt;/P&gt;</description>
      <pubDate>Mon, 03 Nov 2025 05:13:37 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dynamic-Top-5-Bottom-5-Visuals-Using-Field-Parameters-amp/m-p/4864541#M185523</guid>
      <dc:creator>V-yubandi-msft</dc:creator>
      <dc:date>2025-11-03T05:13:37Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamic Top 5/Bottom 5 Visuals Using Field Parameters &amp; Measures</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dynamic-Top-5-Bottom-5-Visuals-Using-Field-Parameters-amp/m-p/4867895#M185605</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="1381662" data-lia-user-login="LewisSW" class="lia-mention lia-mention-user"&gt;LewisSW&lt;/a&gt;&amp;nbsp;,&lt;BR /&gt;&lt;SPAN data-teams="true"&gt; Could you let us know if your issue has been resolved or if you are still experiencing difficulties? Your feedback is valuable to the community and can help others facing similar problems.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 06 Nov 2025 10:11:53 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dynamic-Top-5-Bottom-5-Visuals-Using-Field-Parameters-amp/m-p/4867895#M185605</guid>
      <dc:creator>V-yubandi-msft</dc:creator>
      <dc:date>2025-11-06T10:11:53Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamic Top 5/Bottom 5 Visuals Using Field Parameters &amp; Measures</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dynamic-Top-5-Bottom-5-Visuals-Using-Field-Parameters-amp/m-p/4869428#M185648</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="1381662" data-lia-user-login="LewisSW" class="lia-mention lia-mention-user"&gt;LewisSW&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT face="arial,helvetica,sans-serif"&gt;You need to create measures that dynamically respond to the field parameter selection and filter to the correct GL accounts for the hovered shop.&lt;/FONT&gt;&lt;/P&gt;&lt;HR /&gt;&lt;H2&gt;&lt;FONT face="arial,helvetica,sans-serif"&gt;&lt;STRONG&gt;Step 1: Create a Dynamic Delta Measure&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/H2&gt;&lt;P&gt;&lt;FONT face="arial,helvetica,sans-serif"&gt;This measure will automatically pick the correct KPI based on the field parameter selection:&lt;/FONT&gt;&lt;/P&gt;&lt;PRE&gt;&lt;FONT face="arial,helvetica,sans-serif"&gt;_Dynamic_Delta = 
VAR SelectedKPI = SELECTEDVALUE('_KPI_Row'[_KPI_Row])

VAR Result = 
    SWITCH(
        SelectedKPI,
        "Sales", [_Total_Sales_Delta],
        "Gross Profit", [_Total_GrossProfit_Delta],
        "Cash Contribution", [_Total_CashContribution_Delta],
        BLANK()
    )

RETURN Result&lt;/FONT&gt;&lt;/PRE&gt;&lt;HR /&gt;&lt;H2&gt;&lt;FONT face="arial,helvetica,sans-serif"&gt;&lt;STRONG&gt;Step 2: Create GL Account Level Delta Measures&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/H2&gt;&lt;P&gt;&lt;FONT face="arial,helvetica,sans-serif"&gt;Create similar delta measures but at the GL Account level:&lt;/FONT&gt;&lt;/P&gt;&lt;PRE&gt;&lt;FONT face="arial,helvetica,sans-serif"&gt;_GLAccount_Sales_Delta =
VAR _KPI = "Sales"
VAR TY = CALCULATE([Sum of GBP Amount BFX], 'D-SHOP_REPORTING_SORT'[Reporting Row Name] = _KPI) * -1
VAR LY = CALCULATE(
    [Sum of GBP Amount BFX],
    'D-SHOP_REPORTING_SORT'[Reporting Row Name] = _KPI,
    FILTER(
        ALL('D-FISCAL_YEAR'),
        'D-FISCAL_YEAR'[Fiscal Year] = 'D-SELECTED_BASE_YEAR'[Selected Base Year Measure Fiscal Year]
    )
) * -1
RETURN TY - LY&lt;/FONT&gt;&lt;/PRE&gt;&lt;PRE&gt;&lt;FONT face="arial,helvetica,sans-serif"&gt;_GLAccount_GrossProfit_Delta =
VAR _KPI = "Gross Profit"
VAR TY = CALCULATE([Sum of GBP Amount BFX], 'D-SHOP_REPORTING_SORT'[Reporting Row Name] = _KPI) * -1
VAR LY = CALCULATE(
    [Sum of GBP Amount BFX],
    'D-SHOP_REPORTING_SORT'[Reporting Row Name] = _KPI,
    FILTER(
        ALL('D-FISCAL_YEAR'),
        'D-FISCAL_YEAR'[Fiscal Year] = 'D-SELECTED_BASE_YEAR'[Selected Base Year Measure Fiscal Year]
    )
) * -1
RETURN TY - LY&lt;/FONT&gt;&lt;/PRE&gt;&lt;PRE&gt;&lt;FONT face="arial,helvetica,sans-serif"&gt;_GLAccount_CashContribution_Delta =
VAR _KPI = "Cash Contribution"
VAR TY = CALCULATE([Sum of GBP Amount BFX], 'D-SHOP_REPORTING_SORT'[Reporting Row Name] = _KPI) * -1
VAR LY = CALCULATE(
    [Sum of GBP Amount BFX],
    'D-SHOP_REPORTING_SORT'[Reporting Row Name] = _KPI,
    FILTER(
        ALL('D-FISCAL_YEAR'),
        'D-FISCAL_YEAR'[Fiscal Year] = 'D-SELECTED_BASE_YEAR'[Selected Base Year Measure Fiscal Year]
    )
) * -1
RETURN TY - LY&lt;/FONT&gt;&lt;/PRE&gt;&lt;HR /&gt;&lt;H2&gt;&lt;FONT face="arial,helvetica,sans-serif"&gt;&lt;STRONG&gt;Step 3: Create Dynamic GL Account Delta Measure&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/H2&gt;&lt;PRE&gt;&lt;FONT face="arial,helvetica,sans-serif"&gt;_Dynamic_GLAccount_Delta = 
VAR SelectedKPI = SELECTEDVALUE('_KPI_Row'[_KPI_Row])

VAR Result = 
    SWITCH(
        SelectedKPI,
        "Sales", [_GLAccount_Sales_Delta],
        "Gross Profit", [_GLAccount_GrossProfit_Delta],
        "Cash Contribution", [_GLAccount_CashContribution_Delta],
        BLANK()
    )

RETURN Result&lt;/FONT&gt;&lt;/PRE&gt;&lt;HR /&gt;&lt;H2&gt;&lt;FONT face="arial,helvetica,sans-serif"&gt;&lt;STRONG&gt;Step 4: Create Top 5 and Bottom 5 Measures&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/H2&gt;&lt;H3&gt;&lt;FONT face="arial,helvetica,sans-serif"&gt;&lt;STRONG&gt;Top 5 GL Accounts:&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/H3&gt;&lt;PRE&gt;&lt;FONT face="arial,helvetica,sans-serif"&gt;_Top5_GLAccount_Delta = 
VAR CurrentGLAccount = SELECTEDVALUE('GLAccountTable'[GL Account])
VAR SelectedKPI = SELECTEDVALUE('_KPI_Row'[_KPI_Row])

VAR Top5Table = 
    TOPN(
        5,
        SUMMARIZE(
            'GLAccountTable',
            'GLAccountTable'[GL Account],
            "Delta", [_Dynamic_GLAccount_Delta]
        ),
        [Delta],
        DESC
    )

VAR IsInTop5 = CurrentGLAccount IN VALUES(Top5Table[GL Account])

RETURN
IF(IsInTop5, [_Dynamic_GLAccount_Delta], BLANK())&lt;/FONT&gt;&lt;/PRE&gt;&lt;H3&gt;&lt;FONT face="arial,helvetica,sans-serif"&gt;&lt;STRONG&gt;Bottom 5 GL Accounts:&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/H3&gt;&lt;PRE&gt;&lt;FONT face="arial,helvetica,sans-serif"&gt;_Bottom5_GLAccount_Delta = 
VAR CurrentGLAccount = SELECTEDVALUE('GLAccountTable'[GL Account])
VAR SelectedKPI = SELECTEDVALUE('_KPI_Row'[_KPI_Row])

VAR Bottom5Table = 
    TOPN(
        5,
        SUMMARIZE(
            'GLAccountTable',
            'GLAccountTable'[GL Account],
            "Delta", [_Dynamic_GLAccount_Delta]
        ),
        [Delta],
        ASC
    )

VAR IsInBottom5 = CurrentGLAccount IN VALUES(Bottom5Table[GL Account])

RETURN
IF(IsInBottom5, [_Dynamic_GLAccount_Delta], BLANK())&lt;/FONT&gt;&lt;/PRE&gt;&lt;HR /&gt;&lt;H2&gt;&lt;FONT face="arial,helvetica,sans-serif"&gt;&lt;STRONG&gt;Step 5: Create the Tooltip Page&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/H2&gt;&lt;OL&gt;&lt;LI&gt;&lt;P&gt;&lt;FONT face="arial,helvetica,sans-serif"&gt;&lt;STRONG&gt;Create a new page&lt;/STRONG&gt; in your report&lt;/FONT&gt;&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;&lt;FONT face="arial,helvetica,sans-serif"&gt;&lt;STRONG&gt;Format as tooltip page:&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;&lt;FONT face="arial,helvetica,sans-serif"&gt;Go to Page Settings → Canvas Settings&lt;/FONT&gt;&lt;/LI&gt;&lt;LI&gt;&lt;FONT face="arial,helvetica,sans-serif"&gt;Set Type = "Tooltip"&lt;/FONT&gt;&lt;/LI&gt;&lt;LI&gt;&lt;FONT face="arial,helvetica,sans-serif"&gt;Set appropriate size (e.g., 320 x 240)&lt;/FONT&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;&lt;FONT face="arial,helvetica,sans-serif"&gt;&lt;STRONG&gt;Add two bar charts:&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="arial,helvetica,sans-serif"&gt;&lt;STRONG&gt;Top 5 Chart:&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;&lt;FONT face="arial,helvetica,sans-serif"&gt;&lt;STRONG&gt;Axis&lt;/STRONG&gt;: GL Account&lt;/FONT&gt;&lt;/LI&gt;&lt;LI&gt;&lt;FONT face="arial,helvetica,sans-serif"&gt;&lt;STRONG&gt;Values&lt;/STRONG&gt;: [_Top5_GLAccount_Delta]&lt;/FONT&gt;&lt;/LI&gt;&lt;LI&gt;&lt;FONT face="arial,helvetica,sans-serif"&gt;&lt;STRONG&gt;Title&lt;/STRONG&gt;: "Top 5 Contributing GL Accounts"&lt;/FONT&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;FONT face="arial,helvetica,sans-serif"&gt;&lt;STRONG&gt;Bottom 5 Chart:&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;&lt;FONT face="arial,helvetica,sans-serif"&gt;&lt;STRONG&gt;Axis&lt;/STRONG&gt;: GL Account&lt;/FONT&gt;&lt;/LI&gt;&lt;LI&gt;&lt;FONT face="arial,helvetica,sans-serif"&gt;&lt;STRONG&gt;Values&lt;/STRONG&gt;: [_Bottom5_GLAccount_Delta]&lt;/FONT&gt;&lt;/LI&gt;&lt;LI&gt;&lt;FONT face="arial,helvetica,sans-serif"&gt;&lt;STRONG&gt;Title&lt;/STRONG&gt;: "Bottom 5 Contributing GL Accounts"&lt;/FONT&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;&lt;FONT face="arial,helvetica,sans-serif"&gt;&lt;STRONG&gt;Add the field parameter slicer&lt;/STRONG&gt; to the tooltip page&lt;/FONT&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;&lt;FONT face="arial,helvetica,sans-serif"&gt;This ensures the tooltip respects the KPI selection&lt;/FONT&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;/LI&gt;&lt;/OL&gt;&lt;HR /&gt;&lt;H2&gt;&lt;FONT face="arial,helvetica,sans-serif"&gt;&lt;STRONG&gt;Step 6: Configure Tooltip on Main Visual&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/H2&gt;&lt;OL&gt;&lt;LI&gt;&lt;FONT face="arial,helvetica,sans-serif"&gt;Go to your main Shop bar chart&lt;/FONT&gt;&lt;/LI&gt;&lt;LI&gt;&lt;FONT face="arial,helvetica,sans-serif"&gt;In the Format pane → Tooltip&lt;/FONT&gt;&lt;/LI&gt;&lt;LI&gt;&lt;FONT face="arial,helvetica,sans-serif"&gt;Set Type = "Report page"&lt;/FONT&gt;&lt;/LI&gt;&lt;LI&gt;&lt;FONT face="arial,helvetica,sans-serif"&gt;Select your tooltip page&lt;/FONT&gt;&lt;/LI&gt;&lt;/OL&gt;&lt;H2&gt;&lt;FONT face="arial,helvetica,sans-serif" size="3"&gt;Please try above steps in sequence and let me know if it works for you.&lt;/FONT&gt;&lt;/H2&gt;&lt;P&gt;&lt;FONT face="arial,helvetica,sans-serif"&gt;if it doesnt work for you please provide sample pbix.&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT face="arial,helvetica,sans-serif"&gt;please give kudos or mark it as solution once confirmed.&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT face="arial,helvetica,sans-serif"&gt;Thanks and regards,&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="arial,helvetica,sans-serif"&gt;Praful&lt;/FONT&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 07 Nov 2025 18:46:34 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dynamic-Top-5-Bottom-5-Visuals-Using-Field-Parameters-amp/m-p/4869428#M185648</guid>
      <dc:creator>Praful_Potphode</dc:creator>
      <dc:date>2025-11-07T18:46:34Z</dc:date>
    </item>
  </channel>
</rss>

