<?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: Scenario mapping table in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Scenario-mapping-table/m-p/4807581#M183883</link>
    <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="733181" data-lia-user-login="Skater" class="lia-mention lia-mention-user"&gt;Skater&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Thank you for reaching out to the Microsoft fabric community forum.&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Could you please confirm if the issue has been resolved.&amp;nbsp;I wanted to check if you had the opportunity to review the information provided by&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="475583" data-lia-user-login="wardy912" class="lia-mention lia-mention-user"&gt;wardy912&lt;/a&gt;&amp;nbsp; and &lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="829343" data-lia-user-login="Mvsainathareddy" class="lia-mention lia-mention-user"&gt;Mvsainathareddy&lt;/a&gt;&amp;nbsp;helpful for you to resolve your issue. Please feel free to contact us if you have any further questions.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Thnak you.&lt;/SPAN&gt;&lt;/P&gt;</description>
    <pubDate>Tue, 26 Aug 2025 04:47:22 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2025-08-26T04:47:22Z</dc:date>
    <item>
      <title>Scenario mapping table</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Scenario-mapping-table/m-p/4804856#M183795</link>
      <description>&lt;P&gt;I need help getting a scenario mapping table to work with with a slicer. For example, scenario 1 should use all the parameters on that row. One of the parameters refers to say a list of accounts from the chart of accounts. The specific scenario 1 chart of accounts is slicer wher the user can select the accounts within that scenario 1 to impact with the other parameters with that scenario say start date and percentage increase all users selectinons for parameter 1 group. My issue is that there the chart of accounts is in the slicer but the scenario table only refer to the table name that contains the chart of account table. I've set separate tables for the parameter percentage, start year and chart of accounts single column which I'm using all as single select slicers except for the chart of accounts as a multi select. Any suggestions?&lt;/P&gt;</description>
      <pubDate>Fri, 22 Aug 2025 10:22:08 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Scenario-mapping-table/m-p/4804856#M183795</guid>
      <dc:creator>Skater</dc:creator>
      <dc:date>2025-08-22T10:22:08Z</dc:date>
    </item>
    <item>
      <title>Re: Scenario mapping table</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Scenario-mapping-table/m-p/4804971#M183800</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="733181" data-lia-user-login="Skater" class="lia-mention lia-mention-user"&gt;Skater&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Yes, you can use Field Parameters in Power BI to help manage dynamic slicer behavior — especially when you want users to switch between different dimensions or measures in visuals. However, for your scenario mapping use case&lt;BR /&gt;Let’s break it down:&lt;BR /&gt;What Field Parameters Can Do&lt;BR /&gt;Field Parameters allow users to:&lt;BR /&gt;- Dynamically switch between columns or measures in visuals.&lt;BR /&gt;- Create slicers that control which fields are displayed.&lt;BR /&gt;How Field Parameters Might Help in Your Scenario&lt;BR /&gt;If your goal is to let users switch between different parameter groups (e.g., start year, percentage increase, chart of accounts), Field Parameters can help by:&lt;BR /&gt;- Creating a slicer that lets users choose which parameter to apply.&lt;BR /&gt;- Dynamically updating visuals based on the selected parameter.&lt;/P&gt;&lt;P&gt;But Field Parameters don’t inherently filter data — they control what is shown , not how it’s filtered .&lt;BR /&gt;Recommended Hybrid Approach&lt;BR /&gt;To make your scenario mapping work with slicers and Field Parameters:&lt;/P&gt;&lt;P&gt;1. Create a Scenario Mapping Table&lt;BR /&gt;Include:&lt;BR /&gt;- Scenario Name&lt;BR /&gt;- Start Year&lt;BR /&gt;- % Increase&lt;BR /&gt;- Account ID&lt;/P&gt;&lt;P&gt;2. Relate Account ID to Chart of Accounts Table&lt;/P&gt;&lt;P&gt;3. Use Field Parameters for Visual Switching&lt;BR /&gt;Create a Field Parameter table like:&lt;/P&gt;&lt;P&gt;DAX&lt;BR /&gt;FieldParameter = {&lt;BR /&gt;("Start Year", NAMEOF('ScenarioMapping'[Start Year])),&lt;BR /&gt;("% Increase", NAMEOF('ScenarioMapping'[% Increase])),&lt;BR /&gt;("Account", NAMEOF('ScenarioMapping'[Account ID]))&lt;BR /&gt;}&lt;/P&gt;&lt;P&gt;This lets users switch between parameters in visuals.&lt;/P&gt;&lt;P&gt;4. Use Slicers for Filtering&lt;BR /&gt;- Scenario slicer filters the scenario mapping table.&lt;BR /&gt;- Chart of accounts slicer filters the account table, which is linked to scenario mapping.&lt;/P&gt;</description>
      <pubDate>Fri, 22 Aug 2025 11:33:52 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Scenario-mapping-table/m-p/4804971#M183800</guid>
      <dc:creator>Mvsainathareddy</dc:creator>
      <dc:date>2025-08-22T11:33:52Z</dc:date>
    </item>
    <item>
      <title>Re: Scenario mapping table</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Scenario-mapping-table/m-p/4805085#M183804</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="733181" data-lia-user-login="Skater" class="lia-mention lia-mention-user"&gt;Skater&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;Use a field parameter, really straight forward to set up and will solve your issue.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;From the modeling tab, select 'new parameter' then 'fields'&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;You can choose any column from any table in the next section, I tend to use this to slice between calendar/fiscal calendar dates. Keep 'Add slicer' ticked to automatically add your slicer&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;This will create a table, select your parameter from that table and add to your visual&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;I hope this helps, please mark as solved if it does, thanks!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 22 Aug 2025 13:12:37 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Scenario-mapping-table/m-p/4805085#M183804</guid>
      <dc:creator>wardy912</dc:creator>
      <dc:date>2025-08-22T13:12:37Z</dc:date>
    </item>
    <item>
      <title>Re: Scenario mapping table</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Scenario-mapping-table/m-p/4805745#M183819</link>
      <description>&lt;P&gt;Thanks a I'll work through a solution and let you know how it goes.&lt;/P&gt;</description>
      <pubDate>Sun, 24 Aug 2025 00:13:22 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Scenario-mapping-table/m-p/4805745#M183819</guid>
      <dc:creator>Skater</dc:creator>
      <dc:date>2025-08-24T00:13:22Z</dc:date>
    </item>
    <item>
      <title>Re: Scenario mapping table</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Scenario-mapping-table/m-p/4805746#M183820</link>
      <description>&lt;P&gt;&lt;SPAN&gt;Thanks a I'll work through a solution and let you know how it goes.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Sun, 24 Aug 2025 00:14:21 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Scenario-mapping-table/m-p/4805746#M183820</guid>
      <dc:creator>Skater</dc:creator>
      <dc:date>2025-08-24T00:14:21Z</dc:date>
    </item>
    <item>
      <title>Re: Scenario mapping table</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Scenario-mapping-table/m-p/4807581#M183883</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="733181" data-lia-user-login="Skater" class="lia-mention lia-mention-user"&gt;Skater&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Thank you for reaching out to the Microsoft fabric community forum.&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Could you please confirm if the issue has been resolved.&amp;nbsp;I wanted to check if you had the opportunity to review the information provided by&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="475583" data-lia-user-login="wardy912" class="lia-mention lia-mention-user"&gt;wardy912&lt;/a&gt;&amp;nbsp; and &lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="829343" data-lia-user-login="Mvsainathareddy" class="lia-mention lia-mention-user"&gt;Mvsainathareddy&lt;/a&gt;&amp;nbsp;helpful for you to resolve your issue. Please feel free to contact us if you have any further questions.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Thnak you.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 26 Aug 2025 04:47:22 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Scenario-mapping-table/m-p/4807581#M183883</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2025-08-26T04:47:22Z</dc:date>
    </item>
    <item>
      <title>Re: Scenario mapping table</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Scenario-mapping-table/m-p/4810075#M183956</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="733181" data-lia-user-login="Skater" class="lia-mention lia-mention-user"&gt;Skater&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Could you please confirm if the issue has been resolved. P&lt;/SPAN&gt;&lt;SPAN&gt;lease feel free to contact us if you have any further questions.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Thank you.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 28 Aug 2025 09:27:25 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Scenario-mapping-table/m-p/4810075#M183956</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2025-08-28T09:27:25Z</dc:date>
    </item>
    <item>
      <title>Re: Scenario mapping table</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Scenario-mapping-table/m-p/4812740#M184029</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="733181" data-lia-user-login="Skater" class="lia-mention lia-mention-user"&gt;Skater&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN data-teams="true"&gt;We haven’t received an update from you in some time. Could you please let us know if the issue has been resolved?&lt;BR /&gt;If you still require support, please let us know, we are happy to assist you.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN data-teams="true"&gt;Thank you.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 01 Sep 2025 04:03:09 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Scenario-mapping-table/m-p/4812740#M184029</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2025-09-01T04:03:09Z</dc:date>
    </item>
  </channel>
</rss>

