<?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: Display a result formula in a Text function in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Display-a-result-formula-in-a-Text-function/m-p/3645839#M141175</link>
    <description>&lt;P&gt;Anonymous&lt;/LI-USER&gt;&amp;nbsp;Yes. It is possible. But as you rightly found out whatever format applied to the [Turnover] will be removed.&lt;BR /&gt;But if you still want to apply&amp;nbsp;&lt;SPAN&gt;formating like 5m€ this also is possible but we need to modify the logic of [New measure].&amp;nbsp; &amp;nbsp;You can try this measure .&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;New Measure = "Today our turnover up to " &amp;amp; FORMAT([Turnover], "€#,0,,.00#M") &lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;here ,&amp;nbsp;FORMAT([Turnover], "€#,0,,.00#M") &lt;SPAN&gt;is used to format the turnover measure with&lt;/SPAN&gt; currency symbol,&lt;SPAN&gt;&amp;nbsp;two decimal places and comma as the thousands separator.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Thu, 18 Jan 2024 12:18:33 GMT</pubDate>
    <dc:creator>saurabhtd</dc:creator>
    <dc:date>2024-01-18T12:18:33Z</dc:date>
    <item>
      <title>Display a result formula in a Text function</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Display-a-result-formula-in-a-Text-function/m-p/3645780#M141173</link>
      <description>&lt;P&gt;Hi everyone,&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have&amp;nbsp; request, is it possible to insert a calculate function result in a new mesure Text?&amp;nbsp;&lt;/P&gt;&lt;P&gt;I mean,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;New measure : "Today our turnover up to" &amp;amp; [Turnover]&lt;/P&gt;&lt;P&gt;Turnover = Sum of turnover in decimal number format&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I tried but the format was deleted automatically.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Ex : formating 5m€ =&amp;gt; display 59787878,0909090 in New measure.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you in advance for your help,&lt;/P&gt;</description>
      <pubDate>Thu, 18 Jan 2024 11:36:10 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Display-a-result-formula-in-a-Text-function/m-p/3645780#M141173</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2024-01-18T11:36:10Z</dc:date>
    </item>
    <item>
      <title>Re: Display a result formula in a Text function</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Display-a-result-formula-in-a-Text-function/m-p/3645839#M141175</link>
      <description>&lt;P&gt;Anonymous&lt;/LI-USER&gt;&amp;nbsp;Yes. It is possible. But as you rightly found out whatever format applied to the [Turnover] will be removed.&lt;BR /&gt;But if you still want to apply&amp;nbsp;&lt;SPAN&gt;formating like 5m€ this also is possible but we need to modify the logic of [New measure].&amp;nbsp; &amp;nbsp;You can try this measure .&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;New Measure = "Today our turnover up to " &amp;amp; FORMAT([Turnover], "€#,0,,.00#M") &lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;here ,&amp;nbsp;FORMAT([Turnover], "€#,0,,.00#M") &lt;SPAN&gt;is used to format the turnover measure with&lt;/SPAN&gt; currency symbol,&lt;SPAN&gt;&amp;nbsp;two decimal places and comma as the thousands separator.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 18 Jan 2024 12:18:33 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Display-a-result-formula-in-a-Text-function/m-p/3645839#M141175</guid>
      <dc:creator>saurabhtd</dc:creator>
      <dc:date>2024-01-18T12:18:33Z</dc:date>
    </item>
    <item>
      <title>Re: Display a result formula in a Text function</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Display-a-result-formula-in-a-Text-function/m-p/3645849#M141177</link>
      <description>&lt;P&gt;Anonymous&lt;/LI-USER&gt;&amp;nbsp;You can use the FORMAT function, you can find more options here:&amp;nbsp;&lt;A href="https://dax.guide/format/" target="_blank"&gt;https://dax.guide/format/&lt;/A&gt;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;"Today our turnover up to " &amp;amp; FORMAT ( [Total Sales], "$#,0.00" )
-- "Today our turnover up to " &amp;amp; FORMAT ( [Total Sales], "Currency" )
-- "Today our turnover up to " &amp;amp; FORMAT ( [Total Sales], "$#,0,,.0#M" )
-- "Today our turnover up to " &amp;amp; FORMAT ( [Total Sales], "$#,0,,,.0#B" )&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 18 Jan 2024 12:12:31 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Display-a-result-formula-in-a-Text-function/m-p/3645849#M141177</guid>
      <dc:creator>AntrikshSharma</dc:creator>
      <dc:date>2024-01-18T12:12:31Z</dc:date>
    </item>
    <item>
      <title>Re: Display a result formula in a Text function</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Display-a-result-formula-in-a-Text-function/m-p/3646014#M141187</link>
      <description>&lt;P&gt;Thank you&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="236628" data-lia-user-login="AntrikshSharma" class="lia-mention lia-mention-user"&gt;AntrikshSharma&lt;/a&gt;&amp;nbsp; &amp;amp;&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="478644" data-lia-user-login="saurabhtd" class="lia-mention lia-mention-user"&gt;saurabhtd&lt;/a&gt;&amp;nbsp;it works !&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 18 Jan 2024 13:39:16 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Display-a-result-formula-in-a-Text-function/m-p/3646014#M141187</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2024-01-18T13:39:16Z</dc:date>
    </item>
  </channel>
</rss>

