<?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: CONTAINSSTRING in EVALUATE error in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/CONTAINSSTRING-in-EVALUATE-error/m-p/3570625#M137671</link>
    <description>&lt;P&gt;Anonymous&lt;/LI-USER&gt;&amp;nbsp; DAX queries in Analysis Services mainly incorporate a limited set of DAX functions, and not all the functions found in Power BI or Power Pivot are accessible within DAX queries.&lt;/P&gt;&lt;P&gt;The capabilities provided in DAX queries are influenced by the version and compatibility level configured for your Analysis Services instance.&lt;/P&gt;</description>
    <pubDate>Wed, 06 Dec 2023 14:04:26 GMT</pubDate>
    <dc:creator>BeaBF</dc:creator>
    <dc:date>2023-12-06T14:04:26Z</dc:date>
    <item>
      <title>CONTAINSSTRING in EVALUATE error</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/CONTAINSSTRING-in-EVALUATE-error/m-p/3570404#M137658</link>
      <description>&lt;P&gt;Hey guys.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'm trying to pull data from SSAS in Import mode using DAX Query. But having trouble with CONTAINSSTRING in EVALUATE statement. No matter how I change it, it gives me error every time.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;EVALUATE&lt;/DIV&gt;&lt;DIV&gt;FILTER(&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; &amp;nbsp; ALL( 'Task'[appointment_type] ),&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; &amp;nbsp; CONTAINSSTRING( [appointment_type], "Callcenter" )&lt;/DIV&gt;&lt;DIV&gt;)&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;The error I get is following:&lt;/DIV&gt;&lt;DIV&gt;DataSource.Error: AnalysisServices: Query (4, 5) Failed to resolve name 'CONTAINSSTRING'. It is not a valid table, variable, or function name.&lt;/DIV&gt;&lt;DIV&gt;Any ideas?&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;IN operator also doesn't seem to work in EVALUATE statement.&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Wed, 06 Dec 2023 12:24:29 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/CONTAINSSTRING-in-EVALUATE-error/m-p/3570404#M137658</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2023-12-06T12:24:29Z</dc:date>
    </item>
    <item>
      <title>Re: CONTAINSSTRING in EVALUATE error</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/CONTAINSSTRING-in-EVALUATE-error/m-p/3570543#M137661</link>
      <description>&lt;P&gt;Anonymous&lt;/LI-USER&gt;&amp;nbsp; Hi! Try with:&lt;BR /&gt;&lt;BR /&gt;EVALUATE&lt;BR /&gt;FILTER(&lt;BR /&gt;ALL( 'Task'[appointment_type] ),&lt;BR /&gt;CONTAINSSTRINGEXACT( 'Task'[appointment_type], "Callcenter" )&lt;BR /&gt;)&lt;BR /&gt;&lt;BR /&gt;BBF&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 06 Dec 2023 13:41:15 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/CONTAINSSTRING-in-EVALUATE-error/m-p/3570543#M137661</guid>
      <dc:creator>BeaBF</dc:creator>
      <dc:date>2023-12-06T13:41:15Z</dc:date>
    </item>
    <item>
      <title>Re: CONTAINSSTRING in EVALUATE error</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/CONTAINSSTRING-in-EVALUATE-error/m-p/3570576#M137666</link>
      <description>&lt;P&gt;Thx for your reply.&lt;/P&gt;&lt;P&gt;I don't see how a very similar function would make a difference. Anyway, it doesn't work.&lt;/P&gt;</description>
      <pubDate>Wed, 06 Dec 2023 13:50:55 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/CONTAINSSTRING-in-EVALUATE-error/m-p/3570576#M137666</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2023-12-06T13:50:55Z</dc:date>
    </item>
    <item>
      <title>Re: CONTAINSSTRING in EVALUATE error</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/CONTAINSSTRING-in-EVALUATE-error/m-p/3570585#M137667</link>
      <description>&lt;P&gt;Anonymous&lt;/LI-USER&gt;&amp;nbsp;you're right. Have you tried with the SEARCH?&lt;BR /&gt;EVALUATE&lt;BR /&gt;FILTER(&lt;BR /&gt;ALL( 'Task'[appointment_type] ),&lt;BR /&gt;SEARCH("Callcenter", 'Task'[appointment_type], 1, 0) &amp;gt; 0&lt;BR /&gt;)&lt;BR /&gt;&lt;BR /&gt;BBF&lt;/P&gt;</description>
      <pubDate>Wed, 06 Dec 2023 13:53:01 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/CONTAINSSTRING-in-EVALUATE-error/m-p/3570585#M137667</guid>
      <dc:creator>BeaBF</dc:creator>
      <dc:date>2023-12-06T13:53:01Z</dc:date>
    </item>
    <item>
      <title>Re: CONTAINSSTRING in EVALUATE error</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/CONTAINSSTRING-in-EVALUATE-error/m-p/3570610#M137670</link>
      <description>&lt;P&gt;Yes, I've tried different solutions and I can get it work. That's not the point here, though. &lt;STRONG&gt;I want to know why not all DAX functions work in DAX Query, what I'm missing.&lt;/STRONG&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 06 Dec 2023 13:59:34 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/CONTAINSSTRING-in-EVALUATE-error/m-p/3570610#M137670</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2023-12-06T13:59:34Z</dc:date>
    </item>
    <item>
      <title>Re: CONTAINSSTRING in EVALUATE error</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/CONTAINSSTRING-in-EVALUATE-error/m-p/3570625#M137671</link>
      <description>&lt;P&gt;Anonymous&lt;/LI-USER&gt;&amp;nbsp; DAX queries in Analysis Services mainly incorporate a limited set of DAX functions, and not all the functions found in Power BI or Power Pivot are accessible within DAX queries.&lt;/P&gt;&lt;P&gt;The capabilities provided in DAX queries are influenced by the version and compatibility level configured for your Analysis Services instance.&lt;/P&gt;</description>
      <pubDate>Wed, 06 Dec 2023 14:04:26 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/CONTAINSSTRING-in-EVALUATE-error/m-p/3570625#M137671</guid>
      <dc:creator>BeaBF</dc:creator>
      <dc:date>2023-12-06T14:04:26Z</dc:date>
    </item>
    <item>
      <title>Re: CONTAINSSTRING in EVALUATE error</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/CONTAINSSTRING-in-EVALUATE-error/m-p/3579271#M138034</link>
      <description>&lt;P&gt;Perfect. That's what I was looking for. Thank you!&lt;/P&gt;</description>
      <pubDate>Tue, 12 Dec 2023 08:21:35 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/CONTAINSSTRING-in-EVALUATE-error/m-p/3579271#M138034</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2023-12-12T08:21:35Z</dc:date>
    </item>
  </channel>
</rss>

