<?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: Dax or Measure to find specific word from Cel in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dax-or-Measure-to-find-specific-word-from-Cel/m-p/1603755#M32171</link>
    <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="280560" data-lia-user-login="mkazi" class="lia-mention lia-mention-user"&gt;mkazi&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If you prefer to do this in the Power Query editor then I would do it like this to have a non case-sensitive result:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;if Text.Contains([#"Details of the Complaints / Suggestions n Feedback"],"ASAP",Comparer.OrdinalIgnoreCase) then "ASAP"
else if Text.Contains([#"Details of the Complaints / Suggestions n Feedback"],"angry",Comparer.OrdinalIgnoreCase) then "Angry"
else if Text.Contains([#"Details of the Complaints / Suggestions n Feedback"],"Complaint",Comparer.OrdinalIgnoreCase) then "Complaint"
else "No"&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;Regards,&lt;/P&gt;</description>
    <pubDate>Sun, 17 Jan 2021 10:21:21 GMT</pubDate>
    <dc:creator>Payeras_BI</dc:creator>
    <dc:date>2021-01-17T10:21:21Z</dc:date>
    <item>
      <title>Dax or Measure to find specific word from Cel</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dax-or-Measure-to-find-specific-word-from-Cel/m-p/1603638#M32165</link>
      <description>&lt;P&gt;Dear All,&lt;/P&gt;&lt;P&gt;need help to find specific word from the cell / row wise and display output in anthere collumn&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;e.d&lt;/P&gt;&lt;P&gt;Customer is very upset and angry, need Shipment delivery ASAP&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Need to look for upser,Angry and ASAP and put the same in another collumn to plot word cloud graph&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Appericiate your support and looking or solution on the same&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Many Thanks&lt;/P&gt;&lt;P&gt;Sameer&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 17 Jan 2021 04:46:54 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dax-or-Measure-to-find-specific-word-from-Cel/m-p/1603638#M32165</guid>
      <dc:creator>mkazi</dc:creator>
      <dc:date>2021-01-17T04:46:54Z</dc:date>
    </item>
    <item>
      <title>Re: Dax or Measure to find specific word from Cel</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dax-or-Measure-to-find-specific-word-from-Cel/m-p/1603733#M32168</link>
      <description>&lt;P&gt;Hi &lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="280560" data-lia-user-login="mkazi" class="lia-mention lia-mention-user"&gt;mkazi&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;Try with this function: CONTAINSSTRING&lt;/P&gt;&lt;P&gt;&lt;A href="https://dax.guide/containsstring/" target="_blank"&gt;https://dax.guide/containsstring/&lt;/A&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;</description>
      <pubDate>Sun, 17 Jan 2021 09:07:04 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dax-or-Measure-to-find-specific-word-from-Cel/m-p/1603733#M32168</guid>
      <dc:creator>Payeras_BI</dc:creator>
      <dc:date>2021-01-17T09:07:04Z</dc:date>
    </item>
    <item>
      <title>Re: Dax or Measure to find specific word from Cel</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dax-or-Measure-to-find-specific-word-from-Cel/m-p/1603748#M32170</link>
      <description>&lt;P&gt;&lt;SPAN&gt;Hi Payres, trying to use the below if text.contains to get the below words from the table and each cell&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;anything to modify below&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;if Text.Contains([#"Details of the Complaints / Suggestions n Feedback"],"ASAP") then "ASAP" ,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;if Text.Contains([#"Details of the Complaints / Suggestions n Feedback"],"angry") then "Angry"&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;if Text.Contains([#"Details of the Complaints / Suggestions n Feedback"],"Complaint") then "Complaint"&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;else "No")&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 17 Jan 2021 09:43:32 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dax-or-Measure-to-find-specific-word-from-Cel/m-p/1603748#M32170</guid>
      <dc:creator>mkazi</dc:creator>
      <dc:date>2021-01-17T09:43:32Z</dc:date>
    </item>
    <item>
      <title>Re: Dax or Measure to find specific word from Cel</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dax-or-Measure-to-find-specific-word-from-Cel/m-p/1603755#M32171</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="280560" data-lia-user-login="mkazi" class="lia-mention lia-mention-user"&gt;mkazi&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If you prefer to do this in the Power Query editor then I would do it like this to have a non case-sensitive result:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;if Text.Contains([#"Details of the Complaints / Suggestions n Feedback"],"ASAP",Comparer.OrdinalIgnoreCase) then "ASAP"
else if Text.Contains([#"Details of the Complaints / Suggestions n Feedback"],"angry",Comparer.OrdinalIgnoreCase) then "Angry"
else if Text.Contains([#"Details of the Complaints / Suggestions n Feedback"],"Complaint",Comparer.OrdinalIgnoreCase) then "Complaint"
else "No"&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;Regards,&lt;/P&gt;</description>
      <pubDate>Sun, 17 Jan 2021 10:21:21 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dax-or-Measure-to-find-specific-word-from-Cel/m-p/1603755#M32171</guid>
      <dc:creator>Payeras_BI</dc:creator>
      <dc:date>2021-01-17T10:21:21Z</dc:date>
    </item>
    <item>
      <title>Re: Dax or Measure to find specific word from Cel</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dax-or-Measure-to-find-specific-word-from-Cel/m-p/1603774#M32172</link>
      <description>&lt;P&gt;Thanks , i will use it as i jsut have to filter only Customer sentiment words , like ANGRY ETC...&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;it wil be max of 12 to 13 words&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 17 Jan 2021 11:16:47 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dax-or-Measure-to-find-specific-word-from-Cel/m-p/1603774#M32172</guid>
      <dc:creator>mkazi</dc:creator>
      <dc:date>2021-01-17T11:16:47Z</dc:date>
    </item>
    <item>
      <title>Re: Dax or Measure to find specific word from Cel</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dax-or-Measure-to-find-specific-word-from-Cel/m-p/1603802#M32176</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="280560" data-lia-user-login="mkazi" class="lia-mention lia-mention-user"&gt;mkazi&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am glad it helped, if I answered your question please mark my post as the solution.&lt;STRONG&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;</description>
      <pubDate>Sun, 17 Jan 2021 11:51:44 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dax-or-Measure-to-find-specific-word-from-Cel/m-p/1603802#M32176</guid>
      <dc:creator>Payeras_BI</dc:creator>
      <dc:date>2021-01-17T11:51:44Z</dc:date>
    </item>
  </channel>
</rss>

