<?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 The matrix cell has to display the value as it is if its nonzero with leading special character in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/The-matrix-cell-has-to-display-the-value-as-it-is-if-its-nonzero/m-p/3566777#M137494</link>
    <description>&lt;P&gt;Hi All,&lt;BR /&gt;&lt;BR /&gt;Input :&amp;nbsp; &amp;nbsp; &amp;nbsp;Col1&amp;nbsp; Col2&amp;nbsp; &amp;nbsp; &amp;nbsp;Col3&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;AA&amp;nbsp; &amp;nbsp; $1,045&amp;nbsp; &amp;nbsp;xxx&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;BB&amp;nbsp; &amp;nbsp; &amp;nbsp;$0&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;yyy&lt;BR /&gt;&lt;BR /&gt;Col2 : Decimal number, currency format.&amp;nbsp;&lt;BR /&gt;The matrix must display the Col2 value as such if its &amp;gt; 0&amp;nbsp; and if its 0 then 0 without the $ symbol.&lt;BR /&gt;&lt;BR /&gt;your input please?&lt;/P&gt;</description>
    <pubDate>Mon, 04 Dec 2023 17:35:33 GMT</pubDate>
    <dc:creator>uma_mahi</dc:creator>
    <dc:date>2023-12-04T17:35:33Z</dc:date>
    <item>
      <title>The matrix cell has to display the value as it is if its nonzero with leading special character</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/The-matrix-cell-has-to-display-the-value-as-it-is-if-its-nonzero/m-p/3566777#M137494</link>
      <description>&lt;P&gt;Hi All,&lt;BR /&gt;&lt;BR /&gt;Input :&amp;nbsp; &amp;nbsp; &amp;nbsp;Col1&amp;nbsp; Col2&amp;nbsp; &amp;nbsp; &amp;nbsp;Col3&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;AA&amp;nbsp; &amp;nbsp; $1,045&amp;nbsp; &amp;nbsp;xxx&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;BB&amp;nbsp; &amp;nbsp; &amp;nbsp;$0&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;yyy&lt;BR /&gt;&lt;BR /&gt;Col2 : Decimal number, currency format.&amp;nbsp;&lt;BR /&gt;The matrix must display the Col2 value as such if its &amp;gt; 0&amp;nbsp; and if its 0 then 0 without the $ symbol.&lt;BR /&gt;&lt;BR /&gt;your input please?&lt;/P&gt;</description>
      <pubDate>Mon, 04 Dec 2023 17:35:33 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/The-matrix-cell-has-to-display-the-value-as-it-is-if-its-nonzero/m-p/3566777#M137494</guid>
      <dc:creator>uma_mahi</dc:creator>
      <dc:date>2023-12-04T17:35:33Z</dc:date>
    </item>
    <item>
      <title>Re: The matrix cell has to display the value as it is if its nonzero with leading special character</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/The-matrix-cell-has-to-display-the-value-as-it-is-if-its-nonzero/m-p/3566792#M137495</link>
      <description>&lt;P&gt;I did it using power query,&lt;BR /&gt;Col2 =&amp;gt; Decimal , Col2_copy =&amp;gt; text&lt;BR /&gt;if [Col2_copy] = "0"&lt;BR /&gt;then "0"&lt;BR /&gt;else Text.Combine(&lt;BR /&gt;{ "$",&lt;BR /&gt;[Col2_copy&lt;BR /&gt;})&lt;BR /&gt;Output : $1045 , 0 [ since the datatype of the column changed&amp;nbsp; to text , "," are gone. Is there any way to copy the data as such including its format?&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 04 Dec 2023 17:46:58 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/The-matrix-cell-has-to-display-the-value-as-it-is-if-its-nonzero/m-p/3566792#M137495</guid>
      <dc:creator>uma_mahi</dc:creator>
      <dc:date>2023-12-04T17:46:58Z</dc:date>
    </item>
    <item>
      <title>Re: The matrix cell has to display the value as it is if its nonzero with leading special character</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/The-matrix-cell-has-to-display-the-value-as-it-is-if-its-nonzero/m-p/3567241#M137518</link>
      <description>&lt;P&gt;IF(&amp;lt;value&amp;gt;=0, FORMAT(&amp;lt;value&amp;gt;,&amp;nbsp;&lt;SPAN&gt;"General Number"),&amp;nbsp;FORMAT(&amp;lt;value&amp;gt;,&amp;nbsp;"Currency"))&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 04 Dec 2023 22:45:35 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/The-matrix-cell-has-to-display-the-value-as-it-is-if-its-nonzero/m-p/3567241#M137518</guid>
      <dc:creator>ray_codex</dc:creator>
      <dc:date>2023-12-04T22:45:35Z</dc:date>
    </item>
    <item>
      <title>Re: The matrix cell has to display the value as it is if its nonzero with leading special character</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/The-matrix-cell-has-to-display-the-value-as-it-is-if-its-nonzero/m-p/3568589#M137583</link>
      <description>&lt;P&gt;Thank you so much, its working.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 05 Dec 2023 14:01:26 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/The-matrix-cell-has-to-display-the-value-as-it-is-if-its-nonzero/m-p/3568589#M137583</guid>
      <dc:creator>uma_mahi</dc:creator>
      <dc:date>2023-12-05T14:01:26Z</dc:date>
    </item>
  </channel>
</rss>

