<?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 Qlik to power bi dax it is very urgent in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Qlik-to-power-bi-dax-it-is-very-urgent/m-p/3736312#M145632</link>
    <description>&lt;P&gt;&lt;SPAN&gt;&lt;SPAN class=""&gt;Dimension =if(GetSelectedCount(Themes)&amp;gt;0,&lt;BR /&gt;if(match(Permalink,$(vCRP)) and not match(Themes,$(vCRT)),Themes),&lt;BR /&gt;if(match(Permalink,$(vCRP)) and not match(Themes,'$(vTh)'),Themes))&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;</description>
    <pubDate>Fri, 01 Mar 2024 13:03:58 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2024-03-01T13:03:58Z</dc:date>
    <item>
      <title>Qlik to power bi dax it is very urgent</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Qlik-to-power-bi-dax-it-is-very-urgent/m-p/3736312#M145632</link>
      <description>&lt;P&gt;&lt;SPAN&gt;&lt;SPAN class=""&gt;Dimension =if(GetSelectedCount(Themes)&amp;gt;0,&lt;BR /&gt;if(match(Permalink,$(vCRP)) and not match(Themes,$(vCRT)),Themes),&lt;BR /&gt;if(match(Permalink,$(vCRP)) and not match(Themes,'$(vTh)'),Themes))&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 01 Mar 2024 13:03:58 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Qlik-to-power-bi-dax-it-is-very-urgent/m-p/3736312#M145632</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2024-03-01T13:03:58Z</dc:date>
    </item>
    <item>
      <title>Re: Qlik to power bi dax it is very urgent</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Qlik-to-power-bi-dax-it-is-very-urgent/m-p/3736366#M145634</link>
      <description>&lt;P&gt;Hi&amp;nbsp;Anonymous&lt;/LI-USER&gt;,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Can you try this:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;MEASURE =
VAR __vCRP = "" //I don't know how this variable is populated in QlikSense
VAR __vCRT = "" //Same as above
VAR __vTH = "" //Same as above
VAR __Permalink = "" //Same as above
RETURN
    IF (
        HASONEVALUE ( Themes ),
        IF (
            OR (
                AND (
                    CONTAINSSTRING ( __Permalink, __vCRP ),
                    NOT ( CONTAINSSTRING ( __Permalink, vCRT ) )
                ),
                AND (
                    CONTAINSSTRING ( __Permalink, __vCRP ),
                    NOT ( CONTAINSSTRING ( __Permalink, vTH ) )
                )
            ),
            SELECTEDVALUE ( Themes ),
            BLANK ()
        ),
        BLANK ()
    )&lt;/LI-CODE&gt;</description>
      <pubDate>Fri, 01 Mar 2024 13:35:36 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Qlik-to-power-bi-dax-it-is-very-urgent/m-p/3736366#M145634</guid>
      <dc:creator>govindarajan_d</dc:creator>
      <dc:date>2024-03-01T13:35:36Z</dc:date>
    </item>
    <item>
      <title>Re: Qlik to power bi dax it is very urgent</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Qlik-to-power-bi-dax-it-is-very-urgent/m-p/3739252#M145782</link>
      <description>&lt;P&gt;Hi&amp;nbsp;Anonymous&lt;/LI-USER&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You can try formula like below:&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;result = 
IF (
    COUNTROWS ( VALUES ( 'Themes'[Theme] ) ) &amp;gt; 0,
    IF (
        CONTAINSSTRING ( "vCRP", MAX(Themes[Theme]) ) &amp;amp;&amp;amp; NOT CONTAINSSTRING ( "vCRT", MAX(Themes[Theme])),
        MAX(Themes[Theme]),
        BLANK ()
    ),
    IF (
        CONTAINSSTRING ( "vCRP", MAX(Themes[Theme]) ) &amp;amp;&amp;amp; NOT CONTAINSSTRING ( "vTh", MAX(Themes[Theme])),
        MAX(Themes[Theme]),
        BLANK ()
    )
)&lt;/LI-CODE&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;Best Regards,&lt;BR /&gt;Adamk Kong&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If this post&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;EM&gt;&lt;STRONG&gt;helps&lt;/STRONG&gt;&lt;/EM&gt;, then please consider&lt;EM&gt;&lt;STRONG&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;Accept it as the solution&lt;/STRONG&gt;&lt;/EM&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;to help the other members find it more quickly.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 04 Mar 2024 07:47:57 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Qlik-to-power-bi-dax-it-is-very-urgent/m-p/3739252#M145782</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2024-03-04T07:47:57Z</dc:date>
    </item>
  </channel>
</rss>

