<?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: i want to create a new column of  numeric values extracted from another column of numeric values? in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/i-want-to-create-a-new-column-of-numeric-values-extracted-from/m-p/3564221#M137404</link>
    <description>&lt;P&gt;Unfortunately with so little details I'm not sure I understand what you're looking for.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Please read this:&amp;nbsp;&lt;A href="https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-Get-Your-Question-Answered-Quickly/td-p/1626726/jump-to/first-unread-message" target="_self"&gt;How To Get Your Question Answered Quickly&lt;/A&gt;&amp;nbsp;.&lt;/P&gt;</description>
    <pubDate>Sat, 02 Dec 2023 14:52:27 GMT</pubDate>
    <dc:creator>Rice</dc:creator>
    <dc:date>2023-12-02T14:52:27Z</dc:date>
    <item>
      <title>i want to create a new column of  numeric values extracted from another column of numeric values?</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/i-want-to-create-a-new-column-of-numeric-values-extracted-from/m-p/3564083#M137391</link>
      <description>&lt;P&gt;i need help with creating a new column of numeric values extracted from another column of numeric values using dax in powerbi desktop.&amp;nbsp;&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;new column =&lt;/SPAN&gt; &lt;SPAN&gt;CALCULATE&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;COUNT&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;CUSTOMER&lt;/SPAN&gt;&lt;SPAN&gt;[NetPromoterScore]&lt;/SPAN&gt;&lt;SPAN&gt;),&lt;/SPAN&gt;&lt;SPAN&gt;FILTER&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;ALL&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;CUSTOMER&lt;/SPAN&gt;&lt;SPAN&gt;),&lt;/SPAN&gt;&lt;SPAN&gt;'CUSTOMER'&lt;/SPAN&gt;&lt;SPAN&gt;[NetPromoterScore]&lt;/SPAN&gt;&lt;SPAN&gt;=&lt;/SPAN&gt;&lt;SPAN&gt;9&lt;/SPAN&gt;&lt;SPAN&gt;-&lt;/SPAN&gt;&lt;SPAN&gt;10&lt;/SPAN&gt;&lt;SPAN&gt;))&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Sat, 02 Dec 2023 09:03:11 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/i-want-to-create-a-new-column-of-numeric-values-extracted-from/m-p/3564083#M137391</guid>
      <dc:creator>Chic</dc:creator>
      <dc:date>2023-12-02T09:03:11Z</dc:date>
    </item>
    <item>
      <title>Re: i want to create a new column of  numeric values extracted from another column of numeric values?</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/i-want-to-create-a-new-column-of-numeric-values-extracted-from/m-p/3564221#M137404</link>
      <description>&lt;P&gt;Unfortunately with so little details I'm not sure I understand what you're looking for.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Please read this:&amp;nbsp;&lt;A href="https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-Get-Your-Question-Answered-Quickly/td-p/1626726/jump-to/first-unread-message" target="_self"&gt;How To Get Your Question Answered Quickly&lt;/A&gt;&amp;nbsp;.&lt;/P&gt;</description>
      <pubDate>Sat, 02 Dec 2023 14:52:27 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/i-want-to-create-a-new-column-of-numeric-values-extracted-from/m-p/3564221#M137404</guid>
      <dc:creator>Rice</dc:creator>
      <dc:date>2023-12-02T14:52:27Z</dc:date>
    </item>
    <item>
      <title>Re: i want to create a new column of  numeric values extracted from another column of numeric values?</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/i-want-to-create-a-new-column-of-numeric-values-extracted-from/m-p/3567509#M137530</link>
      <description>&lt;P&gt;Hi &lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="655112" data-lia-user-login="Chic" class="lia-mention lia-mention-user"&gt;Chic&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;Thanks for reaching out to us with your problem. Base on your description, it seems that you are trying to create a calculated column which extract the &lt;SPAN&gt;numeric values&lt;/SPAN&gt; from another column. You can create a calculated column as below to get it, please find the details in &lt;EM&gt;&lt;STRONG&gt;the attachment&lt;/STRONG&gt;&lt;/EM&gt;:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;Column = 
VAR _pos =
    IFERROR ( SEARCH ( "-", 'CUSTOMER'[NetPromoterScore], 1, 0 ), 0 )
RETURN
    VALUE ( RIGHT ( 'CUSTOMER'[NetPromoterScore], LEN ( [NetPromoterScore] ) - _pos ) ) //VALUE(LEFT([NetPromoterScore],_pos-1))&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;If the above one can't help you get the expected result,&amp;nbsp;&lt;SPAN&gt;please provide some&amp;nbsp;&lt;/SPAN&gt;&lt;STRONG&gt;raw data&lt;/STRONG&gt;&lt;SPAN&gt;&amp;nbsp;in your table '&lt;STRONG&gt;CUSTOMER&lt;/STRONG&gt;' (&lt;/SPAN&gt;&lt;STRONG&gt;&lt;EM&gt;exclude&amp;nbsp;sensitive&amp;nbsp;data&lt;/EM&gt;&lt;/STRONG&gt;&lt;SPAN&gt;) with&amp;nbsp;&lt;/SPAN&gt;&lt;FONT color="#FF0000"&gt;&lt;STRONG&gt;Text&lt;/STRONG&gt;&amp;nbsp;&lt;/FONT&gt;&lt;SPAN&gt;format and your expected result with the specific examples and backend logic&lt;/SPAN&gt;&lt;SPAN&gt;. It would be helpful to find out the solution. You can refer the following link to share the required info:&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://nam06.safelinks.protection.outlook.com/?url=https%3A%2F%2Fcommunity.powerbi.com%2Ft5%2FCommunity-Blog%2FHow-to-provide-sample-data-in-the-Power-BI-Forum%2Fba-p%2F963216&amp;amp;data=05%7C01%7CClaire.Dong%40microsoft.com%7Cada9149bd91546a8432508dacd31ef9b%7C72f988bf86f141af91ab2d7cd011db47%7C1%7C0%7C638047911607737134%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000%7C%7C%7C&amp;amp;sdata=EJlYfclgtrjgAEYj9Uo1AauqxaQm3hlQsjJMo4zCY1M%3D&amp;amp;reserved=0" target="_blank" rel="nofollow noopener noreferrer"&gt;How to provide sample data in the Power BI Forum&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;And&amp;nbsp;&lt;FONT color="#FF0000"&gt;&lt;STRONG&gt;It is better&lt;/STRONG&gt;&lt;/FONT&gt;&amp;nbsp;if you can share a&amp;nbsp;&lt;FONT color="#008000"&gt;&lt;STRONG&gt;simplified&lt;/STRONG&gt;&amp;nbsp;&lt;/FONT&gt;pbix file. You can refer the following link to upload the file to the community. Thank you.&lt;/P&gt;
&lt;P&gt;&lt;A href="https://nam06.safelinks.protection.outlook.com/?url=https%3A%2F%2Fcommunity.powerbi.com%2Ft5%2FDesktop%2FHow-to-upload-PBI-in-Community%2Fm-p%2F1672886&amp;amp;data=04%7C01%7Cv-yiruan%40microsoft.com%7C4f580813734d4a8355b008da16f6e91a%7C72f988bf86f141af91ab2d7cd011db47%7C1%7C0%7C637847547341062885%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C1000&amp;amp;sdata=YJvujige2YITXKbKED9JieQm5LBdf%2F3IYPM4ggdiijQ%3D&amp;amp;reserved=0" target="_blank" rel="nofollow noopener noreferrer"&gt;How to upload PBI in Community&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;Best Regards&lt;/P&gt;</description>
      <pubDate>Tue, 05 Dec 2023 03:37:52 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/i-want-to-create-a-new-column-of-numeric-values-extracted-from/m-p/3567509#M137530</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2023-12-05T03:37:52Z</dc:date>
    </item>
  </channel>
</rss>

