<?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: Problem between filter and table in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Problem-between-filter-and-table/m-p/4154392#M165102</link>
    <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;I didn't find a solution to my issue.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Anyway, thanks for your help.&lt;/P&gt;</description>
    <pubDate>Tue, 17 Sep 2024 12:34:54 GMT</pubDate>
    <dc:creator>Anaïs</dc:creator>
    <dc:date>2024-09-17T12:34:54Z</dc:date>
    <item>
      <title>Problem between filter and table</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Problem-between-filter-and-table/m-p/4144603#M164719</link>
      <description>&lt;P&gt;Hello everyone,&lt;/P&gt;&lt;P&gt;Here is my issue :&lt;/P&gt;&lt;P&gt;I have a filter named "TYPE" then I choose a value.&lt;BR /&gt;After in my table, it displays all the lines no matter what is the value choose in the filter (I choose to delete the interaction between my table and my filter).&lt;BR /&gt;In this table, if the value chosen in the filter is equal to the "TYPE" column in my table, then I display a measure called "Concatenation" and if it's not equal, i display a blank.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I try several solutions but without the result expected.&lt;/P&gt;&lt;P&gt;an example of what I tried :&lt;/P&gt;&lt;P&gt;MyColumn =&lt;BR /&gt;IF(&lt;BR /&gt;SELECTEDVALUE('MyTable'[TYPE]) = VALUES('MyTable'[TYPE]),&lt;BR /&gt;[Concatenation],&lt;BR /&gt;BLANK()&lt;BR /&gt;)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Can someone have an idea ?&lt;/P&gt;&lt;P&gt;Thank you for your help.&lt;/P&gt;</description>
      <pubDate>Wed, 11 Sep 2024 09:32:42 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Problem-between-filter-and-table/m-p/4144603#M164719</guid>
      <dc:creator>Anaïs</dc:creator>
      <dc:date>2024-09-11T09:32:42Z</dc:date>
    </item>
    <item>
      <title>Re: Problem between filter and table</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Problem-between-filter-and-table/m-p/4145499#M164736</link>
      <description>&lt;P&gt;Hi &lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="804159" data-lia-user-login="Anaïs" class="lia-mention lia-mention-user"&gt;Anaïs&lt;/a&gt;, you should use SELECTEDVALUE for both the filter and the table value, and compare these directly. give this a try, and if you encounter any issues, let me know.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;MyColumn =
IF(
    SELECTEDVALUE('MyTable'[TYPE]) = SELECTEDVALUE('MyTable'[TYPE], BLANK()),
    [Concatenation],
    BLANK()
)&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P align="center"&gt;&lt;FONT face="verdana,geneva"&gt;&lt;FONT color="#99CC00"&gt;&lt;STRONG&gt;Did I answer your question?&lt;/STRONG&gt;&lt;/FONT&gt; &lt;FONT color="#99CC00"&gt;&lt;STRONG&gt;If so, please mark my post as the solution! &lt;span class="lia-unicode-emoji" title=":heavy_check_mark:"&gt;✔️&lt;/span&gt;&lt;/STRONG&gt;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="verdana,geneva"&gt;&lt;FONT color="#99CC00"&gt;&lt;STRONG&gt;Your Kudos are much appreciated!&lt;/STRONG&gt;&lt;/FONT&gt; &lt;FONT color="#99CC00"&gt;&lt;STRONG&gt;Proud to be a Solution Specialist!&lt;/STRONG&gt;&lt;/FONT&gt; &lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 11 Sep 2024 17:21:05 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Problem-between-filter-and-table/m-p/4145499#M164736</guid>
      <dc:creator>ahadkarimi</dc:creator>
      <dc:date>2024-09-11T17:21:05Z</dc:date>
    </item>
    <item>
      <title>Re: Problem between filter and table</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Problem-between-filter-and-table/m-p/4151986#M164999</link>
      <description>&lt;P&gt;Hello&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="785426" data-lia-user-login="ahadkarimi" class="lia-mention lia-mention-user"&gt;ahadkarimi&lt;/a&gt;,&lt;/P&gt;&lt;P&gt;Thanks for your help.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Unfortunately, it doesn't works.&amp;nbsp;&lt;/P&gt;&lt;P&gt;No matter what is the value i choose in my filter, every single value is display in the table. I don't have blank cells in my column.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 16 Sep 2024 07:44:49 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Problem-between-filter-and-table/m-p/4151986#M164999</guid>
      <dc:creator>Anaïs</dc:creator>
      <dc:date>2024-09-16T07:44:49Z</dc:date>
    </item>
    <item>
      <title>Re: Problem between filter and table</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Problem-between-filter-and-table/m-p/4152635#M165039</link>
      <description>&lt;P&gt;VALUES return a table of unique values and&amp;nbsp;&lt;SPAN&gt;SELECTEDVALUE returns a single value.So the equality comparision isnt valid.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 16 Sep 2024 14:16:44 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Problem-between-filter-and-table/m-p/4152635#M165039</guid>
      <dc:creator>SachinNandanwar</dc:creator>
      <dc:date>2024-09-16T14:16:44Z</dc:date>
    </item>
    <item>
      <title>Re: Problem between filter and table</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Problem-between-filter-and-table/m-p/4154392#M165102</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;I didn't find a solution to my issue.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Anyway, thanks for your help.&lt;/P&gt;</description>
      <pubDate>Tue, 17 Sep 2024 12:34:54 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Problem-between-filter-and-table/m-p/4154392#M165102</guid>
      <dc:creator>Anaïs</dc:creator>
      <dc:date>2024-09-17T12:34:54Z</dc:date>
    </item>
    <item>
      <title>Re: Problem between filter and table</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Problem-between-filter-and-table/m-p/4170169#M165654</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="804159" data-lia-user-login="Anaïs" class="lia-mention lia-mention-user"&gt;Anaïs&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;This is because SELECTEDVALUE gets blank when you disable&lt;SPAN&gt;&amp;nbsp;the interaction.&amp;nbsp;&lt;/SPAN&gt;I recommend you active the interaction and create another custom table which contains all types. Here is my test for your reference.&lt;/P&gt;
&lt;P&gt;The custom table.&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;CustomTable = VALUES(MyTable[TYPE])&lt;/LI-CODE&gt;
&lt;P&gt;The measure.&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;MyColumn =
IF(
SELECTEDVALUE('CustomTable'[TYPE]) = MAX('MyTable'[TYPE]),
[Concatenation],
BLANK()
)&lt;/LI-CODE&gt;
&lt;P&gt;In my test, measure will return 1 if selected name equals name of Arrive table.&lt;/P&gt;
&lt;P&gt;&lt;img /&gt;&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;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Best regards,&lt;/P&gt;
&lt;P&gt;Mengmeng Li&lt;/P&gt;</description>
      <pubDate>Tue, 24 Sep 2024 09:49:04 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Problem-between-filter-and-table/m-p/4170169#M165654</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2024-09-24T09:49:04Z</dc:date>
    </item>
  </channel>
</rss>

