<?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 Column Header based on Filter from another field in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dynamic-Column-Header-based-on-Filter-from-another-field/m-p/4361218#M173129</link>
    <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;Try to create the following table. Adding the relationship between new table and scenarios table.&lt;/P&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;Measure = 
SWITCH(MAX('Table'[TableHeaders]),
                "Actual",[Actual],
                "Budget",[Budget],
                "PY Actual",[PY Actual]
                )&lt;/LI-CODE&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;If it still doesn't work, please provide sample data.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Best Regards,&lt;/P&gt;
&lt;P&gt;Wisdom Wu&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;If this post&amp;nbsp;&lt;STRONG&gt;&lt;EM&gt;helps&lt;/EM&gt;&lt;/STRONG&gt;, then please consider&amp;nbsp;&lt;STRONG&gt;&lt;EM&gt;Accept it as the solution&lt;/EM&gt;&lt;/STRONG&gt;&amp;nbsp;to help the other members find it more quickly.&lt;/SPAN&gt;&lt;/P&gt;</description>
    <pubDate>Mon, 13 Jan 2025 09:30:16 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2025-01-13T09:30:16Z</dc:date>
    <item>
      <title>Dynamic Column Header based on Filter from another field</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dynamic-Column-Header-based-on-Filter-from-another-field/m-p/4357736#M172994</link>
      <description>&lt;P&gt;Hi I'm stuck figuring out how to change column headers in a table/matrix for a dynamic field that is filtered by scenario.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have 3 filtered fields: Alpha, Beta, Gamma. These fields allow users to select from actuals to budget to forecast. When I bring down the data in a matrix, I want to be able to switch the column header so when Alpha is set to "Act", the column will say "Act" instead of "Alpha_all" (this is a calculated measure). I tried using field parameters but haven't had much luck.&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;</description>
      <pubDate>Thu, 09 Jan 2025 19:23:58 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dynamic-Column-Header-based-on-Filter-from-another-field/m-p/4357736#M172994</guid>
      <dc:creator>jaktony</dc:creator>
      <dc:date>2025-01-09T19:23:58Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamic Column Header based on Filter from another field</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dynamic-Column-Header-based-on-Filter-from-another-field/m-p/4358232#M173015</link>
      <description>&lt;P&gt;Hi &lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="808976" data-lia-user-login="jaktony" class="lia-mention lia-mention-user"&gt;jaktony&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;Based on the testing, create the new table as bridge.&lt;/P&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;Then, creating the new measure to filter.&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;Dynamic column headers = SWITCH(MAX('Selected Table'[TableHeaders]),
                "Actual",[Actual],
                "Budget",[Budget],
                "PY Actual",[PY Actual]
                )&lt;/LI-CODE&gt;
&lt;P&gt;The result is shown below.&lt;/P&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;You can also view the following link to learn more information.&lt;/P&gt;
&lt;P&gt;&lt;A href="https://community.fabric.microsoft.com/t5/Desktop/Dynamic-Column-Names-for-Matrix-Visual-using-Sliced-Measures/m-p/790037" target="_blank"&gt;Solved: Dynamic Column Names for Matrix Visual using Slice... - Microsoft Fabric Community&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dynamically-changing-matrix-column-headers-based-on-slicer-value/m-p/3193576" target="_blank"&gt;Solved: Dynamically changing matrix column headers based o... - Microsoft Fabric Community&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://community.fabric.microsoft.com/t5/Desktop/How-to-create-dynamic-column-headers-amp-custom-conditional/td-p/2143552" target="_blank"&gt;Solved: How to create dynamic column headers &amp;amp; custom cond... - Microsoft Fabric Community&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Best Regards,&lt;/P&gt;
&lt;P&gt;Wisdom Wu&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;If this post&amp;nbsp;&lt;STRONG&gt;&lt;EM&gt;helps&lt;/EM&gt;&lt;/STRONG&gt;, then please consider&amp;nbsp;&lt;STRONG&gt;&lt;EM&gt;Accept it as the solution&lt;/EM&gt;&lt;/STRONG&gt;&amp;nbsp;to help the other members find it more quickly.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 10 Jan 2025 06:02:43 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dynamic-Column-Header-based-on-Filter-from-another-field/m-p/4358232#M173015</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2025-01-10T06:02:43Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamic Column Header based on Filter from another field</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dynamic-Column-Header-based-on-Filter-from-another-field/m-p/4359223#M173062</link>
      <description>&lt;P&gt;Thank you for the reply&amp;nbsp;Anonymous&lt;/a&gt;&amp;nbsp;, however each Scenario name should have its own selection rather than selection driving all scenario name.&lt;BR /&gt;&lt;BR /&gt;For example,&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;Alpha = Act&lt;BR /&gt;Beta = Bud&lt;BR /&gt;Gamma = Forecast&lt;BR /&gt;&lt;BR /&gt;In your suggestion, if the selector is set to "Actual" - all scenario's (Alpha, Beta, and Gamma) will be set to "Actual"&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 10 Jan 2025 18:02:42 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dynamic-Column-Header-based-on-Filter-from-another-field/m-p/4359223#M173062</guid>
      <dc:creator>jaktony</dc:creator>
      <dc:date>2025-01-10T18:02:42Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamic Column Header based on Filter from another field</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dynamic-Column-Header-based-on-Filter-from-another-field/m-p/4361218#M173129</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;Try to create the following table. Adding the relationship between new table and scenarios table.&lt;/P&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;Measure = 
SWITCH(MAX('Table'[TableHeaders]),
                "Actual",[Actual],
                "Budget",[Budget],
                "PY Actual",[PY Actual]
                )&lt;/LI-CODE&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;If it still doesn't work, please provide sample data.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Best Regards,&lt;/P&gt;
&lt;P&gt;Wisdom Wu&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;If this post&amp;nbsp;&lt;STRONG&gt;&lt;EM&gt;helps&lt;/EM&gt;&lt;/STRONG&gt;, then please consider&amp;nbsp;&lt;STRONG&gt;&lt;EM&gt;Accept it as the solution&lt;/EM&gt;&lt;/STRONG&gt;&amp;nbsp;to help the other members find it more quickly.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 13 Jan 2025 09:30:16 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dynamic-Column-Header-based-on-Filter-from-another-field/m-p/4361218#M173129</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2025-01-13T09:30:16Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamic Column Header based on Filter from another field</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dynamic-Column-Header-based-on-Filter-from-another-field/m-p/4361690#M173169</link>
      <description>&lt;P&gt;Thank you again for your reply. I have attached a sample data file replicating my main file. Please let me know if you have questions.&lt;BR /&gt;&lt;BR /&gt;&lt;A href="https://olympusssa-my.sharepoint.com/:u:/r/personal/omama_cheema_olympus-osta_com/Documents/PBI%20Test/PBI%20-%20Dynamic%20Column%20Test%20File.pbix?csf=1&amp;amp;web=1&amp;amp;e=4m29IU" target="_self"&gt;PBI Test File&lt;/A&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 13 Jan 2025 14:38:51 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dynamic-Column-Header-based-on-Filter-from-another-field/m-p/4361690#M173169</guid>
      <dc:creator>jaktony</dc:creator>
      <dc:date>2025-01-13T14:38:51Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamic Column Header based on Filter from another field</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dynamic-Column-Header-based-on-Filter-from-another-field/m-p/4362292#M173184</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;I can't open the download URL, it requires permissions, you share it in a different way and don't set authentication.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Best Regards,&lt;/P&gt;
&lt;P&gt;Wisdom Wu&lt;/P&gt;</description>
      <pubDate>Tue, 14 Jan 2025 01:25:36 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dynamic-Column-Header-based-on-Filter-from-another-field/m-p/4362292#M173184</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2025-01-14T01:25:36Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamic Column Header based on Filter from another field</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dynamic-Column-Header-based-on-Filter-from-another-field/m-p/4374162#M173679</link>
      <description>&lt;P&gt;Hi&amp;nbsp;Anonymous&lt;/a&gt;&amp;nbsp;,&lt;BR /&gt;&lt;BR /&gt;Sorry for the late reply. Can you check and see if you get access to the link below? Thanks&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;A href="https://drive.google.com/drive/folders/1uOwmy9uOYTu0FA2-6fgIMs_CE3rB90pD?usp=sharing" target="_blank" rel="noopener"&gt;https://drive.google.com/drive/folders/1uOwmy9uOYTu0FA2-6fgIMs_CE3rB90pD?usp=sharing&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 21 Jan 2025 17:48:54 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dynamic-Column-Header-based-on-Filter-from-another-field/m-p/4374162#M173679</guid>
      <dc:creator>jaktony</dc:creator>
      <dc:date>2025-01-21T17:48:54Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamic Column Header based on Filter from another field</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dynamic-Column-Header-based-on-Filter-from-another-field/m-p/4375250#M173707</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;Are you providing a template? This one has to be opened by entering a string.&lt;/P&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;You can view the following links to learn more information.&lt;/P&gt;
&lt;P&gt;&lt;A href="https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dynamically-changing-matrix-column-headers-based-on-slicer-value/m-p/3193576" target="_blank"&gt;Solved: Dynamically changing matrix column headers based o... - Microsoft Fabric Community&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://community.fabric.microsoft.com/t5/Desktop/Dynamic-Column-Names-for-Matrix-Visual-using-Sliced-Measures/m-p/790037" target="_blank"&gt;Solved: Dynamic Column Names for Matrix Visual using Slice... - Microsoft Fabric Community&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Best Regards,&lt;/P&gt;
&lt;P&gt;Wisdom Wu&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;If this post&amp;nbsp;&lt;STRONG&gt;&lt;EM&gt;helps&lt;/EM&gt;&lt;/STRONG&gt;, then please consider&amp;nbsp;&lt;STRONG&gt;&lt;EM&gt;Accept it as the solution&lt;/EM&gt;&lt;/STRONG&gt;&amp;nbsp;to help the other members find it more quickly.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 22 Jan 2025 08:39:44 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dynamic-Column-Header-based-on-Filter-from-another-field/m-p/4375250#M173707</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2025-01-22T08:39:44Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamic Column Header based on Filter from another field</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dynamic-Column-Header-based-on-Filter-from-another-field/m-p/4376436#M173755</link>
      <description>&lt;P&gt;Sorry provided the wrong file. I don't have the level of access on here to directly give link to my test file. Please see the link below to the updated test file and let me know your thoughts.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;A href="https://drive.google.com/drive/folders/1uOwmy9uOYTu0FA2-6fgIMs_CE3rB90pD?usp=sharing" target="_blank" rel="noopener"&gt;https://drive.google.com/drive/folders/1uOwmy9uOYTu0FA2-6fgIMs_CE3rB90pD?usp=sharing&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 22 Jan 2025 20:34:22 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dynamic-Column-Header-based-on-Filter-from-another-field/m-p/4376436#M173755</guid>
      <dc:creator>jaktony</dc:creator>
      <dc:date>2025-01-22T20:34:22Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamic Column Header based on Filter from another field</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dynamic-Column-Header-based-on-Filter-from-another-field/m-p/4384409#M174023</link>
      <description>&lt;P&gt;Anonymous&lt;/a&gt;&amp;nbsp;Hi any luck accessing the new file and testing?&lt;/P&gt;</description>
      <pubDate>Tue, 28 Jan 2025 13:14:22 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dynamic-Column-Header-based-on-Filter-from-another-field/m-p/4384409#M174023</guid>
      <dc:creator>jaktony</dc:creator>
      <dc:date>2025-01-28T13:14:22Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamic Column Header based on Filter from another field</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dynamic-Column-Header-based-on-Filter-from-another-field/m-p/4397578#M174599</link>
      <description>&lt;P&gt;Hi ,&lt;/P&gt;
&lt;P&gt;Based on the testing, drag the Alpha Scenario Name to the matrix columns.&lt;/P&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;Then, select the slicer is shown below.&lt;/P&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;Best Regards,&lt;/P&gt;
&lt;P&gt;Wisdom Wu&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;If this post&amp;nbsp;&lt;STRONG&gt;&lt;EM&gt;helps&lt;/EM&gt;&lt;/STRONG&gt;, then please consider&amp;nbsp;&lt;STRONG&gt;&lt;EM&gt;Accept it as the solution&lt;/EM&gt;&lt;/STRONG&gt;&amp;nbsp;to help the other members find it more quickly.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 06 Feb 2025 06:24:59 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dynamic-Column-Header-based-on-Filter-from-another-field/m-p/4397578#M174599</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2025-02-06T06:24:59Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamic Column Header based on Filter from another field</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dynamic-Column-Header-based-on-Filter-from-another-field/m-p/4405717#M174912</link>
      <description>&lt;P&gt;Anonymous&lt;/a&gt;&amp;nbsp;thank you for your reply. I had tried that a while ago but had no luck. With multiple scenarios on the matrix, this is what it would look like:&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 11 Feb 2025 19:35:38 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dynamic-Column-Header-based-on-Filter-from-another-field/m-p/4405717#M174912</guid>
      <dc:creator>jaktony</dc:creator>
      <dc:date>2025-02-11T19:35:38Z</dc:date>
    </item>
  </channel>
</rss>

