<?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: Format with dot as thousands separator and comma as decimal separator in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Format-with-dot-as-thousands-separator-and-comma-as-decimal/m-p/3210702#M117083</link>
    <description>&lt;P&gt;Hi&amp;nbsp; &lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="485806" data-lia-user-login="PieroPinzone95" class="lia-mention lia-mention-user"&gt;PieroPinzone95&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;Your regional settings determine what character is used as the thousands separator.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You can consider using the Format() function to implement it, but it ends up in text formatting&lt;/P&gt;
&lt;P&gt;&lt;A href="https://learn.microsoft.com/en-us/dax/format-function-dax" target="_blank"&gt;FORMAT function (DAX) - DAX | Microsoft Learn&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Here are the steps you can follow：&lt;/P&gt;
&lt;P&gt;1. Create calculated column.&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;Flag =
var _thousand=ROUNDDOWN('Table'[Column1]/1000,0)
var _hundreds=ROUNDDOWN(MOD('Table'[Column1],1000),0)
var _decimal=ROUND(MOD('Table'[Column1],1),1) * 10
return
_thousand &amp;amp;"."&amp;amp;_hundreds&amp;amp;","&amp;amp;_decimal&lt;/LI-CODE&gt;
&lt;P&gt;2. Result:&lt;/P&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Best Regards,&lt;/P&gt;
&lt;P&gt;Liu Yang&lt;/P&gt;
&lt;P&gt;If this post &lt;STRONG&gt;helps&lt;/STRONG&gt;, then please consider &lt;EM&gt;Accept it as the solution&lt;/EM&gt; to help the other members find it more quickly&lt;/P&gt;</description>
    <pubDate>Fri, 28 Apr 2023 07:16:41 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2023-04-28T07:16:41Z</dc:date>
    <item>
      <title>Format with dot as thousands separator and comma as decimal separator</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Format-with-dot-as-thousands-separator-and-comma-as-decimal/m-p/3206867#M116819</link>
      <description>&lt;P&gt;Hi guys, I would like to convert the format as shown above... i start with comma thousands separator and dot as decimal separator... i want the opposite&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 26 Apr 2023 09:05:53 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Format-with-dot-as-thousands-separator-and-comma-as-decimal/m-p/3206867#M116819</guid>
      <dc:creator>PieroPinzone95</dc:creator>
      <dc:date>2023-04-26T09:05:53Z</dc:date>
    </item>
    <item>
      <title>Re: Format with dot as thousands separator and comma as decimal separator</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Format-with-dot-as-thousands-separator-and-comma-as-decimal/m-p/3210702#M117083</link>
      <description>&lt;P&gt;Hi&amp;nbsp; &lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="485806" data-lia-user-login="PieroPinzone95" class="lia-mention lia-mention-user"&gt;PieroPinzone95&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;Your regional settings determine what character is used as the thousands separator.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You can consider using the Format() function to implement it, but it ends up in text formatting&lt;/P&gt;
&lt;P&gt;&lt;A href="https://learn.microsoft.com/en-us/dax/format-function-dax" target="_blank"&gt;FORMAT function (DAX) - DAX | Microsoft Learn&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Here are the steps you can follow：&lt;/P&gt;
&lt;P&gt;1. Create calculated column.&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;Flag =
var _thousand=ROUNDDOWN('Table'[Column1]/1000,0)
var _hundreds=ROUNDDOWN(MOD('Table'[Column1],1000),0)
var _decimal=ROUND(MOD('Table'[Column1],1),1) * 10
return
_thousand &amp;amp;"."&amp;amp;_hundreds&amp;amp;","&amp;amp;_decimal&lt;/LI-CODE&gt;
&lt;P&gt;2. Result:&lt;/P&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Best Regards,&lt;/P&gt;
&lt;P&gt;Liu Yang&lt;/P&gt;
&lt;P&gt;If this post &lt;STRONG&gt;helps&lt;/STRONG&gt;, then please consider &lt;EM&gt;Accept it as the solution&lt;/EM&gt; to help the other members find it more quickly&lt;/P&gt;</description>
      <pubDate>Fri, 28 Apr 2023 07:16:41 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Format-with-dot-as-thousands-separator-and-comma-as-decimal/m-p/3210702#M117083</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2023-04-28T07:16:41Z</dc:date>
    </item>
  </channel>
</rss>

