<?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 Extracting Certain Characters from Text Column in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Extracting-Certain-Characters-from-Text-Column/m-p/4646323#M177844</link>
    <description>&lt;P&gt;I have a column where data is in Format of Designation.Function.Skill.Domain and I want to extract only SKill.Domain. Please see the below photo and let me know what is the mistake I am doing.&lt;/P&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;</description>
    <pubDate>Thu, 10 Apr 2025 07:47:54 GMT</pubDate>
    <dc:creator>Ankurdatascienc</dc:creator>
    <dc:date>2025-04-10T07:47:54Z</dc:date>
    <item>
      <title>Extracting Certain Characters from Text Column</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Extracting-Certain-Characters-from-Text-Column/m-p/4646323#M177844</link>
      <description>&lt;P&gt;I have a column where data is in Format of Designation.Function.Skill.Domain and I want to extract only SKill.Domain. Please see the below photo and let me know what is the mistake I am doing.&lt;/P&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;</description>
      <pubDate>Thu, 10 Apr 2025 07:47:54 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Extracting-Certain-Characters-from-Text-Column/m-p/4646323#M177844</guid>
      <dc:creator>Ankurdatascienc</dc:creator>
      <dc:date>2025-04-10T07:47:54Z</dc:date>
    </item>
    <item>
      <title>Re: Extracting Certain Characters from Text Column</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Extracting-Certain-Characters-from-Text-Column/m-p/4646428#M177850</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="687971" data-lia-user-login="Ankurdatascienc" class="lia-mention lia-mention-user"&gt;Ankurdatascienc&lt;/a&gt;&amp;nbsp;, Try using&lt;/P&gt;
&lt;P&gt;DAX&lt;BR /&gt;Extract_Skill_Domain =&lt;BR /&gt;VAR FirstDot = SEARCH(".", 'Workday Report'[Job Name], 1, -1)&lt;BR /&gt;VAR SecondDot = SEARCH(".", 'Workday Report'[Job Name], FirstDot + 1, -1)&lt;BR /&gt;VAR ThirdDot = SEARCH(".", 'Workday Report'[Job Name], SecondDot + 1, -1)&lt;BR /&gt;RETURN&lt;BR /&gt;IF(&lt;BR /&gt;FirstDot &amp;gt; 0 &amp;amp;&amp;amp; SecondDot &amp;gt; 0 &amp;amp;&amp;amp; ThirdDot &amp;gt; 0,&lt;BR /&gt;MID('Workday Report'[Job Name], SecondDot + 1, LEN('Workday Report'[Job Name]) - SecondDot),&lt;BR /&gt;BLANK()&lt;BR /&gt;)&lt;/P&gt;</description>
      <pubDate>Thu, 10 Apr 2025 08:55:42 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Extracting-Certain-Characters-from-Text-Column/m-p/4646428#M177850</guid>
      <dc:creator>bhanu_gautam</dc:creator>
      <dc:date>2025-04-10T08:55:42Z</dc:date>
    </item>
    <item>
      <title>Re: Extracting Certain Characters from Text Column</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Extracting-Certain-Characters-from-Text-Column/m-p/4650308#M178004</link>
      <description>&lt;P&gt;&lt;SPAN&gt;Thank you, &lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="625922" data-lia-user-login="bhanu_gautam" class="lia-mention lia-mention-user"&gt;bhanu_gautam&lt;/a&gt;,&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;for your response.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Hi &lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="687971" data-lia-user-login="Ankurdatascienc" class="lia-mention lia-mention-user"&gt;Ankurdatascienc&lt;/a&gt;,&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;We would like to check if the solution provided by&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="625922" data-lia-user-login="bhanu_gautam" class="lia-mention lia-mention-user"&gt;bhanu_gautam&lt;/a&gt;&amp;nbsp;&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;has resolved your issue. If you have found an alternative approach, we encourage you to share it with the community to assist others facing similar challenges.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;If you found the response helpful, please mark it as the accepted solution and add kudos. This recognition benefits other members seeking solutions to similar queries.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Thank you.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Sun, 13 Apr 2025 17:14:51 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Extracting-Certain-Characters-from-Text-Column/m-p/4650308#M178004</guid>
      <dc:creator>v-pnaroju-msft</dc:creator>
      <dc:date>2025-04-13T17:14:51Z</dc:date>
    </item>
    <item>
      <title>Re: Extracting Certain Characters from Text Column</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Extracting-Certain-Characters-from-Text-Column/m-p/4650405#M178011</link>
      <description>&lt;P&gt;Hi&amp;nbsp;@&lt;SPAN class=""&gt;Ankurdatascienc&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Is Power Query an option?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If so, you could:&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;Duplicate the [Job Name] column.&lt;/LI&gt;
&lt;LI&gt;Split by delimiter
&lt;UL&gt;
&lt;LI&gt;“.” As delimiter&lt;/LI&gt;
&lt;LI&gt;&lt;SPAN&gt;Starting from right&lt;/SPAN&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;img /&gt;&lt;/LI&gt;
&lt;/UL&gt;
&lt;/LI&gt;
&lt;LI&gt;
&lt;UL&gt;
&lt;LI&gt;That should give you your [Domain] column.&lt;/LI&gt;
&lt;/UL&gt;
&lt;/LI&gt;
&lt;LI&gt;Using the “left part” of the previous step, repeat the process.
&lt;UL&gt;
&lt;LI&gt;That should give you your [Skill] column.&lt;/LI&gt;
&lt;/UL&gt;
&lt;/LI&gt;
&lt;LI&gt;Delete the resulting “left part” and concatenate and/or rename the new columns accordingly.&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;I hope this helps.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 13 Apr 2025 22:35:07 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Extracting-Certain-Characters-from-Text-Column/m-p/4650405#M178011</guid>
      <dc:creator>gmsamborn</dc:creator>
      <dc:date>2025-04-13T22:35:07Z</dc:date>
    </item>
    <item>
      <title>Re: Extracting Certain Characters from Text Column</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Extracting-Certain-Characters-from-Text-Column/m-p/4656373#M178270</link>
      <description>&lt;P&gt;Hi Ankurdatascienc,&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;P&gt;We wanted to check in regarding your query, as we have not heard back from you. If you have resolved the issue, sharing the solution with the community would be greatly appreciated and could help others encountering similar challenges.&lt;/P&gt;
&lt;P&gt;If you found our response useful, kindly mark it as the accepted solution and provide kudos to guide other members.&lt;BR /&gt;&lt;BR /&gt;Thank you.&lt;/P&gt;</description>
      <pubDate>Wed, 16 Apr 2025 20:14:42 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Extracting-Certain-Characters-from-Text-Column/m-p/4656373#M178270</guid>
      <dc:creator>v-pnaroju-msft</dc:creator>
      <dc:date>2025-04-16T20:14:42Z</dc:date>
    </item>
    <item>
      <title>Re: Extracting Certain Characters from Text Column</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Extracting-Certain-Characters-from-Text-Column/m-p/4660062#M178442</link>
      <description>&lt;P&gt;Hi Ankurdatascienc,&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;P data-pm-slice="1 1 []"&gt;We are following up to see if your query has been resolved. Should you have identified a solution, we kindly request you to share it with the community to assist others facing similar issues.&lt;/P&gt;
&lt;P&gt;If our response was helpful, please mark it as the accepted solution and provide kudos, as this helps the broader community.&lt;BR /&gt;&lt;BR /&gt;Thank you.&lt;/P&gt;</description>
      <pubDate>Sun, 20 Apr 2025 17:59:53 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Extracting-Certain-Characters-from-Text-Column/m-p/4660062#M178442</guid>
      <dc:creator>v-pnaroju-msft</dc:creator>
      <dc:date>2025-04-20T17:59:53Z</dc:date>
    </item>
  </channel>
</rss>

