<?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 show value when selected with other value(s)? in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-show-value-when-selected-with-other-value-s/m-p/4331421#M171952</link>
    <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="736379" data-lia-user-login="shafiz_p" class="lia-mention lia-mention-user"&gt;shafiz_p&lt;/a&gt;&amp;nbsp;Hi Shafiz, Thank you so much for your help.&lt;/P&gt;&lt;P&gt;You DAX is almost working, but&amp;nbsp;I am wondering, is there way for all of three signs show up when&lt;/P&gt;&lt;P&gt;user selects "Select all".&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;I have&lt;A href="https://drive.google.com/file/d/1ojDLq5F9NP7mOWUwRi_xSYpqN_-QmcnE/view?usp=sharing" target="_self"&gt; uploaded the updated PBIX&lt;/A&gt; with three measures (Covers) updated.&lt;/P&gt;&lt;P&gt;Thank you!&lt;/P&gt;</description>
    <pubDate>Mon, 16 Dec 2024 19:01:38 GMT</pubDate>
    <dc:creator>JustinDoh1</dc:creator>
    <dc:date>2024-12-16T19:01:38Z</dc:date>
    <item>
      <title>How to show value when selected with other value(s)?</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-show-value-when-selected-with-other-value-s/m-p/4328815#M171842</link>
      <description>&lt;P&gt;I am trying to show value(s) when I select more than one value.&lt;/P&gt;&lt;P&gt;I have upload &lt;A href="https://drive.google.com/file/d/1kwbiamxlJ8SZ96E9pE5tE_WvaTOCJB7_/view?usp=sharing" target="_self"&gt;my PBIX file here&lt;/A&gt;.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have this DAX that states that "if "ALI" is selected from&amp;nbsp;&lt;SPAN&gt;tblScore&lt;/SPAN&gt;&lt;SPAN&gt;[Location], it displays "ALI", otherwise none.&lt;/SPAN&gt;&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;EM&gt;ALI Cover = IF(SELECTEDVALUE(tblScore[Location]) in {"ALI"},"ALI","")&lt;/EM&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;img /&gt;&lt;P&gt;But, when I select more than one value, nothing would shows up.&lt;/P&gt;&lt;img /&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;How do I modify the exisitng DAX to accomplish that?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Also, I have created three separate DAX for each spot, but is there a way to combine into one DAX expression by chance?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Sat, 14 Dec 2024 00:38:50 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-show-value-when-selected-with-other-value-s/m-p/4328815#M171842</guid>
      <dc:creator>JustinDoh1</dc:creator>
      <dc:date>2024-12-14T00:38:50Z</dc:date>
    </item>
    <item>
      <title>Re: How to show value when selected with other value(s)?</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-show-value-when-selected-with-other-value-s/m-p/4328878#M171846</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="296339" data-lia-user-login="JustinDoh1" class="lia-mention lia-mention-user"&gt;JustinDoh1&lt;/a&gt;&amp;nbsp; Try this:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;ALI Cover = 
IF(
    NOT ISFILTERED(tblScore[Location]),
    "",
    IF(CONTAINSSTRING(CONCATENATEX(tblScore, tblScore[Location], ","), "ALI"), "ALI", "")
)&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Output:&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;Hope this helps!!&lt;/P&gt;&lt;P&gt;If this solved your problem, please accept it as a solution and a kudos!!&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;BR /&gt;Shahariar Hafiz&lt;/P&gt;</description>
      <pubDate>Sat, 14 Dec 2024 03:35:23 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-show-value-when-selected-with-other-value-s/m-p/4328878#M171846</guid>
      <dc:creator>shafiz_p</dc:creator>
      <dc:date>2024-12-14T03:35:23Z</dc:date>
    </item>
    <item>
      <title>Re: How to show value when selected with other value(s)?</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-show-value-when-selected-with-other-value-s/m-p/4328910#M171847</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="296339" data-lia-user-login="JustinDoh1" class="lia-mention lia-mention-user"&gt;JustinDoh1&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;My observation is that you do not need to repeat the three boses, and can use ConcatenateX to achieve your required output.&amp;nbsp;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;Cover = 
IF(
    ISFILTERED(tblScore[Location]),
    CONCATENATEX(
        VALUES(tblScore[Location]),
        tblScore[Location],
        ", "
    ),
    BLANK()
)
&lt;/LI-CODE&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;I have attached a pbix file for your reference.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Best regards,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 14 Dec 2024 04:45:51 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-show-value-when-selected-with-other-value-s/m-p/4328910#M171847</guid>
      <dc:creator>DataNinja777</dc:creator>
      <dc:date>2024-12-14T04:45:51Z</dc:date>
    </item>
    <item>
      <title>Re: How to show value when selected with other value(s)?</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-show-value-when-selected-with-other-value-s/m-p/4331421#M171952</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="736379" data-lia-user-login="shafiz_p" class="lia-mention lia-mention-user"&gt;shafiz_p&lt;/a&gt;&amp;nbsp;Hi Shafiz, Thank you so much for your help.&lt;/P&gt;&lt;P&gt;You DAX is almost working, but&amp;nbsp;I am wondering, is there way for all of three signs show up when&lt;/P&gt;&lt;P&gt;user selects "Select all".&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;I have&lt;A href="https://drive.google.com/file/d/1ojDLq5F9NP7mOWUwRi_xSYpqN_-QmcnE/view?usp=sharing" target="_self"&gt; uploaded the updated PBIX&lt;/A&gt; with three measures (Covers) updated.&lt;/P&gt;&lt;P&gt;Thank you!&lt;/P&gt;</description>
      <pubDate>Mon, 16 Dec 2024 19:01:38 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-show-value-when-selected-with-other-value-s/m-p/4331421#M171952</guid>
      <dc:creator>JustinDoh1</dc:creator>
      <dc:date>2024-12-16T19:01:38Z</dc:date>
    </item>
    <item>
      <title>Re: How to show value when selected with other value(s)?</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-show-value-when-selected-with-other-value-s/m-p/4331438#M171953</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="608865" data-lia-user-login="DataNinja777" class="lia-mention lia-mention-user"&gt;DataNinja777&lt;/a&gt;&amp;nbsp; Thank you so much for your feedback.&lt;/P&gt;&lt;P&gt;I guess due to the spacing issue and alignment to the each parameter, I would need to create separate covers for each.&lt;/P&gt;&lt;P&gt;At this moment, I am trying to find a way for all three signs would show up when users select "Select all".&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Please find &lt;A href="https://drive.google.com/file/d/1ojDLq5F9NP7mOWUwRi_xSYpqN_-QmcnE/view?usp=sharing" target="_self"&gt;my latest &amp;amp; updated file here&lt;/A&gt;&amp;nbsp;that has three separate measures included.&amp;nbsp; Thank you!&lt;/P&gt;</description>
      <pubDate>Mon, 16 Dec 2024 19:26:50 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-show-value-when-selected-with-other-value-s/m-p/4331438#M171953</guid>
      <dc:creator>JustinDoh1</dc:creator>
      <dc:date>2024-12-16T19:26:50Z</dc:date>
    </item>
  </channel>
</rss>

