<?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: How to get the name of Parameter Field Table using DAX in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-get-the-name-of-Parameter-Field-Table-using-DAX/m-p/4747651#M181810</link>
    <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="343036" data-lia-user-login="mark_endicott" class="lia-mention lia-mention-user"&gt;mark_endicott&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you for checking on the post.&lt;/P&gt;&lt;P&gt;No... my intent is to get the name of the parameter table that holds the field values inside a measure.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I could check on the selected value and compare it with the list (as its only 4-5 in number) to infer the Parameter Table Name. But I was wondering if there is a cleaner way to do it. Sometimes(UNFORTUNATELY).... when I drag the Parameter fields, I see 'Table Name'[fieldName] .... is there a DAX expression that I could use to get the Table Name?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Sun, 29 Jun 2025 19:21:31 GMT</pubDate>
    <dc:creator>modi123p</dc:creator>
    <dc:date>2025-06-29T19:21:31Z</dc:date>
    <item>
      <title>How to get the name of Parameter Field Table using DAX</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-get-the-name-of-Parameter-Field-Table-using-DAX/m-p/4745954#M181737</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I m using 2 Parameter Tables on the page and would like to use single measure to control the elements to be displayed.&lt;/P&gt;&lt;P&gt;For example if I choose the parameter on the left side, it should filter the values of Parameter Fields on the right hand side.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I could accomplish this by creating 2 separate count measures and filtering them as below.&lt;/P&gt;&lt;P&gt;However, is there a way I can get the Parameter Table name[PARAM LHS/PARAM RHS]&amp;nbsp; (not the field value) so as to create a switch and handle counts in a single measure?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;RHS_COUNT =&amp;nbsp;&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;var&lt;/SPAN&gt; &lt;SPAN&gt;_selectedGroup&lt;/SPAN&gt;&lt;SPAN&gt; = &lt;/SPAN&gt;&lt;SPAN&gt;[Selected Group LHS]&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;RETURN&lt;/SPAN&gt; &lt;SPAN&gt;SWITCH&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;_selectedGroup&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;"C-Map"&lt;/SPAN&gt;&lt;SPAN&gt; , &lt;/SPAN&gt;&lt;SPAN&gt;CALCULATE&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;COUNTROWS&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;'PARAM RHS'&lt;/SPAN&gt;&lt;SPAN&gt;),&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;NOT&lt;/SPAN&gt; &lt;SPAN&gt;'PARAM RHS'&lt;/SPAN&gt;&lt;SPAN&gt;[Parameter Group]&lt;/SPAN&gt; &lt;SPAN&gt;IN&lt;/SPAN&gt;&lt;SPAN&gt; {&lt;/SPAN&gt;&lt;SPAN&gt;"Offering&amp;gt; *"&lt;/SPAN&gt;&lt;SPAN&gt;}),&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;1&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;LHS_COUNT =&amp;nbsp;&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;var&lt;/SPAN&gt; &lt;SPAN&gt;_selectedGroup&lt;/SPAN&gt;&lt;SPAN&gt; = &lt;/SPAN&gt;&lt;SPAN&gt;[Selected Group RHS]&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;RETURN&lt;/SPAN&gt; &lt;SPAN&gt;SWITCH&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;_selectedGroup&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;"Offering&amp;gt; *" &lt;/SPAN&gt;&lt;SPAN&gt;, &lt;/SPAN&gt;&lt;SPAN&gt;CALCULATE&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;COUNTROWS&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;'PARAM LHS'&lt;/SPAN&gt;&lt;SPAN&gt;),&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;NOT&lt;/SPAN&gt; &lt;SPAN&gt;'PARAM LHS'&lt;/SPAN&gt;&lt;SPAN&gt;[Parameter Group]&lt;/SPAN&gt; &lt;SPAN&gt;IN&lt;/SPAN&gt;&lt;SPAN&gt; {&lt;/SPAN&gt;&lt;SPAN&gt;""C-Map" &lt;/SPAN&gt;&lt;SPAN&gt;}),&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;1&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;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 27 Jun 2025 04:33:57 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-get-the-name-of-Parameter-Field-Table-using-DAX/m-p/4745954#M181737</guid>
      <dc:creator>modi123p</dc:creator>
      <dc:date>2025-06-27T04:33:57Z</dc:date>
    </item>
    <item>
      <title>Re: How to get the name of Parameter Field Table using DAX</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-get-the-name-of-Parameter-Field-Table-using-DAX/m-p/4746315#M181758</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="1270589" data-lia-user-login="modi123p" class="lia-mention lia-mention-user"&gt;modi123p&lt;/a&gt;&amp;nbsp;- If I understand your ask correctly, you want to have a 2nd slicer that shows the values of the selection from the first. If this is true, you dont need DAX, you can do this by copying the slicer and then choosing "show values of selected field" see below:&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;The 2nd slicer will then take the values from the column selected in the first:&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 style="padding: 1em; border: 3px solid #287EC7;"&gt;If I answered your question &lt;STRONG&gt; please mark my post as the solution&lt;/STRONG&gt;, it helps others with the same challenge find the answer!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 27 Jun 2025 09:53:35 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-get-the-name-of-Parameter-Field-Table-using-DAX/m-p/4746315#M181758</guid>
      <dc:creator>mark_endicott</dc:creator>
      <dc:date>2025-06-27T09:53:35Z</dc:date>
    </item>
    <item>
      <title>Re: How to get the name of Parameter Field Table using DAX</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-get-the-name-of-Parameter-Field-Table-using-DAX/m-p/4747651#M181810</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="343036" data-lia-user-login="mark_endicott" class="lia-mention lia-mention-user"&gt;mark_endicott&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you for checking on the post.&lt;/P&gt;&lt;P&gt;No... my intent is to get the name of the parameter table that holds the field values inside a measure.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I could check on the selected value and compare it with the list (as its only 4-5 in number) to infer the Parameter Table Name. But I was wondering if there is a cleaner way to do it. Sometimes(UNFORTUNATELY).... when I drag the Parameter fields, I see 'Table Name'[fieldName] .... is there a DAX expression that I could use to get the Table Name?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 29 Jun 2025 19:21:31 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-get-the-name-of-Parameter-Field-Table-using-DAX/m-p/4747651#M181810</guid>
      <dc:creator>modi123p</dc:creator>
      <dc:date>2025-06-29T19:21:31Z</dc:date>
    </item>
    <item>
      <title>Re: How to get the name of Parameter Field Table using DAX</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-get-the-name-of-Parameter-Field-Table-using-DAX/m-p/4755088#M182059</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="1270589" data-lia-user-login="modi123p" class="lia-mention lia-mention-user"&gt;modi123p&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thank you for reaching out to the Microsoft Fabric Forum Community.&lt;/P&gt;
&lt;P&gt;&lt;LI-WRAPPER&gt;&lt;/LI-WRAPPER&gt;&lt;BR /&gt;Unfortunately, DAX doesn't have a built-in way to figure out which table a selected value came from, there’s no function that can return the name of the table where that value originated.&lt;BR /&gt;&lt;BR /&gt;Thanks.&lt;/P&gt;</description>
      <pubDate>Mon, 07 Jul 2025 10:26:22 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-get-the-name-of-Parameter-Field-Table-using-DAX/m-p/4755088#M182059</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2025-07-07T10:26:22Z</dc:date>
    </item>
  </channel>
</rss>

