<?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: Sorting Numbers from 1 - 50 in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Sorting-Numbers-from-1-50/m-p/4249967#M168273</link>
    <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="540281" data-lia-user-login="Wilson_" class="lia-mention lia-mention-user"&gt;Wilson_&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;Thank you for the fast reply,&lt;BR /&gt;Can you help me what will be the formula to extract the numbers on that column?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Mon, 21 Oct 2024 03:45:04 GMT</pubDate>
    <dc:creator>rquizon09</dc:creator>
    <dc:date>2024-10-21T03:45:04Z</dc:date>
    <item>
      <title>Sorting Numbers from 1 - 50</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Sorting-Numbers-from-1-50/m-p/4249959#M168271</link>
      <description>&lt;P&gt;Hi guys,&lt;BR /&gt;&lt;BR /&gt;Just want to know how to properly sort this numbering in Power BI (table chart)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Thank you&lt;/P&gt;</description>
      <pubDate>Mon, 21 Oct 2024 03:37:42 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Sorting-Numbers-from-1-50/m-p/4249959#M168271</guid>
      <dc:creator>rquizon09</dc:creator>
      <dc:date>2024-10-21T03:37:42Z</dc:date>
    </item>
    <item>
      <title>Re: Sorting Numbers from 1 - 50</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Sorting-Numbers-from-1-50/m-p/4249964#M168272</link>
      <description>&lt;P&gt;Hi rquizon09,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;What you need is a second column in your table that is just the number, formatted as a whole number. Then you can sort this Question No column by that new column.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Please let me know if you need more guidance.&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;&lt;FONT size="2"&gt;----------------------------------&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT size="2"&gt;If this post helps, please consider accepting it as the solution to help other members find it quickly. Also, don't forget to hit that thumbs up and subscribe! (Oh, uh, wrong platform?)&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT size="2"&gt;P.S. Need a more in-depth consultation for your Power BI data modeling or DAX issues? Feel free to hire me on &lt;A href="https://www.upwork.com/freelancers/~01bc08c63d83566d45" target="_blank"&gt;Upwork&lt;/A&gt; or DM me directly on here! I would love to clear up your Power BI headaches.&lt;/FONT&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 21 Oct 2024 03:41:30 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Sorting-Numbers-from-1-50/m-p/4249964#M168272</guid>
      <dc:creator>Wilson_</dc:creator>
      <dc:date>2024-10-21T03:41:30Z</dc:date>
    </item>
    <item>
      <title>Re: Sorting Numbers from 1 - 50</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Sorting-Numbers-from-1-50/m-p/4249967#M168273</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="540281" data-lia-user-login="Wilson_" class="lia-mention lia-mention-user"&gt;Wilson_&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;Thank you for the fast reply,&lt;BR /&gt;Can you help me what will be the formula to extract the numbers on that column?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 21 Oct 2024 03:45:04 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Sorting-Numbers-from-1-50/m-p/4249967#M168273</guid>
      <dc:creator>rquizon09</dc:creator>
      <dc:date>2024-10-21T03:45:04Z</dc:date>
    </item>
    <item>
      <title>Re: Sorting Numbers from 1 - 50</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Sorting-Numbers-from-1-50/m-p/4249991#M168275</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;one of ways is to create a sort order column in power query editor.&lt;/P&gt;
&lt;P&gt;Please check the below picture and the attached pbix file.&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;
&lt;LI-CODE lang="markup"&gt;let
    Source = Data_source,
    #"Duplicated Column" = Table.DuplicateColumn(Source, "Question No.", "sort order"),
    #"Replaced Value" = Table.ReplaceValue(#"Duplicated Column","ItemNo.","",Replacer.ReplaceText,{"sort order"}),
    #"Changed Type" = Table.TransformColumnTypes(#"Replaced Value",{{"sort order", Int64.Type}})
in
    #"Changed Type"&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;</description>
      <pubDate>Mon, 21 Oct 2024 04:12:55 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Sorting-Numbers-from-1-50/m-p/4249991#M168275</guid>
      <dc:creator>Jihwan_Kim</dc:creator>
      <dc:date>2024-10-21T04:12:55Z</dc:date>
    </item>
    <item>
      <title>Re: Sorting Numbers from 1 - 50</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Sorting-Numbers-from-1-50/m-p/4251086#M168323</link>
      <description>&lt;P&gt;rquizon09,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;One way would be to create a new column in Power Query that replaces "ItemNo." with "", then converting the column to a whole number.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="291628" data-lia-user-login="Jihwan_Kim" class="lia-mention lia-mention-user"&gt;Jihwan_Kim&lt;/a&gt;&amp;nbsp;shows that below as well.&lt;/P&gt;</description>
      <pubDate>Mon, 21 Oct 2024 15:16:47 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Sorting-Numbers-from-1-50/m-p/4251086#M168323</guid>
      <dc:creator>Wilson_</dc:creator>
      <dc:date>2024-10-21T15:16:47Z</dc:date>
    </item>
  </channel>
</rss>

