<?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: Show card with text (return TRUE) based on slicer multiselection value. in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Show-card-with-text-return-TRUE-based-on-slicer-multiselection/m-p/2906297#M94829</link>
    <description>&lt;P&gt;Try&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;2022 Q3 Selected Text = "2022 Q3" IN VALUES( 'CALENDAR'[Year Quarter])&lt;/LI-CODE&gt;</description>
    <pubDate>Tue, 15 Nov 2022 11:06:47 GMT</pubDate>
    <dc:creator>johnt75</dc:creator>
    <dc:date>2022-11-15T11:06:47Z</dc:date>
    <item>
      <title>Show card with text (return TRUE) based on slicer multiselection value.</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Show-card-with-text-return-TRUE-based-on-slicer-multiselection/m-p/2903405#M94630</link>
      <description>&lt;P&gt;I want to display a card with text based on a true condition. In this case my measure returns FALSE:&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;2022 Q3 Selected Text = &lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;IF&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;SELECTEDVALUE&lt;/SPAN&gt;&lt;SPAN&gt;('CALENDAR'[Year Quarter]) &lt;/SPAN&gt;&lt;SPAN&gt;in&lt;/SPAN&gt;&lt;SPAN&gt; {&lt;/SPAN&gt;&lt;SPAN&gt;"2022 Q3"&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;/SPAN&gt;&lt;SPAN&gt;"2022 Q2"&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;/SPAN&gt;&lt;SPAN&gt;"2022 Q4"&lt;/SPAN&gt;&lt;SPAN&gt;},&lt;/SPAN&gt;&lt;SPAN&gt;TRUE&lt;/SPAN&gt;&lt;SPAN&gt;(),&lt;/SPAN&gt;&lt;SPAN&gt;FALSE&lt;/SPAN&gt;&lt;SPAN&gt;()&lt;/SPAN&gt;&lt;SPAN&gt;).&lt;BR /&gt;Instead of False as displayed below I want a TRUE in case Year Quarter Multiselection contains 2022 Q3.&lt;BR /&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Could you give me some help?&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;/DIV&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;</description>
      <pubDate>Mon, 14 Nov 2022 10:16:01 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Show-card-with-text-return-TRUE-based-on-slicer-multiselection/m-p/2903405#M94630</guid>
      <dc:creator>rmeng</dc:creator>
      <dc:date>2022-11-14T10:16:01Z</dc:date>
    </item>
    <item>
      <title>Re: Show card with text (return TRUE) based on slicer multiselection value.</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Show-card-with-text-return-TRUE-based-on-slicer-multiselection/m-p/2903617#M94654</link>
      <description>&lt;P&gt;You can't use SELECTEDVALUES if multiple values will be selected. Try&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;2022 Q3 Selected Text =
NOT ISEMPTY (
    INTERSECT (
        VALUES ( 'CALENDAR'[Year Quarter] ),
        { "2022 Q3", "2022 Q2", "2022 Q4" }
    )
)
&lt;/LI-CODE&gt;</description>
      <pubDate>Mon, 14 Nov 2022 12:21:05 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Show-card-with-text-return-TRUE-based-on-slicer-multiselection/m-p/2903617#M94654</guid>
      <dc:creator>johnt75</dc:creator>
      <dc:date>2022-11-14T12:21:05Z</dc:date>
    </item>
    <item>
      <title>Re: Show card with text (return TRUE) based on slicer multiselection value.</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Show-card-with-text-return-TRUE-based-on-slicer-multiselection/m-p/2903690#M94663</link>
      <description>&lt;P&gt;Thanks&amp;nbsp;&lt;SPAN class=""&gt;&lt;SPAN class=""&gt;&lt;SPAN class=""&gt;johnt75,&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class=""&gt;&lt;SPAN class=""&gt;&lt;SPAN class=""&gt;&lt;SPAN&gt;But If I don´t select "2022 Q3" the condition should be FALSE. Should be TRUE when &amp;lt;&amp;gt; then "2022 Q3" Else False.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;DIV class="lia-align-center"&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;DIV&gt;&lt;DIV class=""&gt;&lt;img /&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 14 Nov 2022 12:57:07 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Show-card-with-text-return-TRUE-based-on-slicer-multiselection/m-p/2903690#M94663</guid>
      <dc:creator>rmeng</dc:creator>
      <dc:date>2022-11-14T12:57:07Z</dc:date>
    </item>
    <item>
      <title>Re: Show card with text (return TRUE) based on slicer multiselection value.</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Show-card-with-text-return-TRUE-based-on-slicer-multiselection/m-p/2906297#M94829</link>
      <description>&lt;P&gt;Try&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;2022 Q3 Selected Text = "2022 Q3" IN VALUES( 'CALENDAR'[Year Quarter])&lt;/LI-CODE&gt;</description>
      <pubDate>Tue, 15 Nov 2022 11:06:47 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Show-card-with-text-return-TRUE-based-on-slicer-multiselection/m-p/2906297#M94829</guid>
      <dc:creator>johnt75</dc:creator>
      <dc:date>2022-11-15T11:06:47Z</dc:date>
    </item>
    <item>
      <title>Re: Show card with text (return TRUE) based on slicer multiselection value.</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Show-card-with-text-return-TRUE-based-on-slicer-multiselection/m-p/2906690#M94857</link>
      <description>&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;I´ve found the solution:&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;IF&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;CONTAINS&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 'CALENDAR',&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 'CALENDAR'[Year Quarter],&lt;/SPAN&gt;&lt;SPAN&gt;"2022 Q3"&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; ),&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;TRUE&lt;/SPAN&gt;&lt;SPAN&gt;(),&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;FALSE&lt;/SPAN&gt;&lt;SPAN&gt;()&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; )&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Tue, 15 Nov 2022 13:54:54 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Show-card-with-text-return-TRUE-based-on-slicer-multiselection/m-p/2906690#M94857</guid>
      <dc:creator>rmeng</dc:creator>
      <dc:date>2022-11-15T13:54:54Z</dc:date>
    </item>
  </channel>
</rss>

