<?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: number formating issue in Service</title>
    <link>https://community.fabric.microsoft.com/t5/Service/number-formating-issue/m-p/313307#M36062</link>
    <description>&lt;P&gt;thanks &lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="38" data-lia-user-login="GilbertQ" class="lia-mention lia-mention-user"&gt;GilbertQ&lt;/a&gt;, got it. However, we would like to show "na" (also&amp;nbsp;exclude some extreme&amp;nbsp;number by using if(&amp;gt;100,"nm") )&amp;nbsp;instead of blank for presentation.&amp;nbsp;is that any&amp;nbsp;method to show text but also format the number as %?&lt;/P&gt;</description>
    <pubDate>Wed, 29 Nov 2017 04:05:46 GMT</pubDate>
    <dc:creator>erihsehc</dc:creator>
    <dc:date>2017-11-29T04:05:46Z</dc:date>
    <item>
      <title>number formating issue</title>
      <link>https://community.fabric.microsoft.com/t5/Service/number-formating-issue/m-p/313272#M36057</link>
      <description>&lt;P&gt;hi there,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I would like the number format in %, however, when I used formula ratio% = IFERROR(SUM(Sheet1[sales])/SUM(Sheet1[cost]),"na"), the result cannot be formatted in %, how to solve this? thanks&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;P&gt;data model is as below&lt;/P&gt;&lt;P&gt;&lt;A href="https://crystalgroup-my.sharepoint.com/personal/michael_mak_crystalgroup_com/_layouts/15/guestaccess.aspx?docid=10749e7092b6745b3b0826bcec1e324f0&amp;amp;authkey=AUwMzpkEjc4vrYusB8FvZR0&amp;amp;e=3c9a3394a35c4c9bb6685577ab4fb79c" target="_self"&gt;data model&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Best regards,&lt;/P&gt;&lt;P&gt;ER&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 29 Nov 2017 02:43:23 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Service/number-formating-issue/m-p/313272#M36057</guid>
      <dc:creator>erihsehc</dc:creator>
      <dc:date>2017-11-29T02:43:23Z</dc:date>
    </item>
    <item>
      <title>Re: number formating issue</title>
      <link>https://community.fabric.microsoft.com/t5/Service/number-formating-issue/m-p/313298#M36060</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="42234" data-lia-user-login="erihsehc" class="lia-mention lia-mention-user"&gt;erihsehc&lt;/a&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;What I would suggest doing is to use the new Divide Function which caters for Divide by Errors.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;So your measure could be written as:&lt;/P&gt;&lt;PRE&gt;My Measure = DIVIDE(SUM(Sheet1[sales]),SUM(Sheet1[cost]))&lt;/PRE&gt;&lt;P&gt;This will result in the Divide by errors being blank&lt;/P&gt;</description>
      <pubDate>Wed, 29 Nov 2017 03:21:23 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Service/number-formating-issue/m-p/313298#M36060</guid>
      <dc:creator>GilbertQ</dc:creator>
      <dc:date>2017-11-29T03:21:23Z</dc:date>
    </item>
    <item>
      <title>Re: number formating issue</title>
      <link>https://community.fabric.microsoft.com/t5/Service/number-formating-issue/m-p/313307#M36062</link>
      <description>&lt;P&gt;thanks &lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="38" data-lia-user-login="GilbertQ" class="lia-mention lia-mention-user"&gt;GilbertQ&lt;/a&gt;, got it. However, we would like to show "na" (also&amp;nbsp;exclude some extreme&amp;nbsp;number by using if(&amp;gt;100,"nm") )&amp;nbsp;instead of blank for presentation.&amp;nbsp;is that any&amp;nbsp;method to show text but also format the number as %?&lt;/P&gt;</description>
      <pubDate>Wed, 29 Nov 2017 04:05:46 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Service/number-formating-issue/m-p/313307#M36062</guid>
      <dc:creator>erihsehc</dc:creator>
      <dc:date>2017-11-29T04:05:46Z</dc:date>
    </item>
    <item>
      <title>Re: number formating issue</title>
      <link>https://community.fabric.microsoft.com/t5/Service/number-formating-issue/m-p/313402#M36079</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="42234" data-lia-user-login="erihsehc" class="lia-mention lia-mention-user"&gt;erihsehc&lt;/a&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This could possibly done by using the Format as shown below.&lt;/P&gt;&lt;PRE&gt;My Measure =
IF (
    [Net Win] &amp;gt; 100,
    "nm",
    FORMAT ( DIVIDE ( SUM('Table1'[sales]), SUM('Table1'[Other Sales]), "NA" ), "Percent" )
)&lt;/PRE&gt;</description>
      <pubDate>Wed, 29 Nov 2017 06:29:34 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Service/number-formating-issue/m-p/313402#M36079</guid>
      <dc:creator>GilbertQ</dc:creator>
      <dc:date>2017-11-29T06:29:34Z</dc:date>
    </item>
    <item>
      <title>Re: number formating issue</title>
      <link>https://community.fabric.microsoft.com/t5/Service/number-formating-issue/m-p/313458#M36085</link>
      <description>&lt;P&gt;thanks &lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="38" data-lia-user-login="GilbertQ" class="lia-mention lia-mention-user"&gt;GilbertQ&lt;/a&gt;, this&amp;nbsp;formula is&amp;nbsp;working but there is another issue that, when I put this measure to a&amp;nbsp;multi-row card, I can not format this %result, ("-1.28%" on the screenshot&amp;nbsp;used this measure), I can not add label for it, and this % always stay on top, can not format the color and size.&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 29 Nov 2017 07:42:14 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Service/number-formating-issue/m-p/313458#M36085</guid>
      <dc:creator>erihsehc</dc:creator>
      <dc:date>2017-11-29T07:42:14Z</dc:date>
    </item>
    <item>
      <title>Re: number formating issue</title>
      <link>https://community.fabric.microsoft.com/t5/Service/number-formating-issue/m-p/314314#M36153</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="42234" data-lia-user-login="erihsehc" class="lia-mention lia-mention-user"&gt;erihsehc&lt;/a&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Unfortunately there currently is no other way to format the measures so that they can change based on different scenario's.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I would suggest going to&amp;nbsp;&lt;A href="https://ideas.powerbi.com" target="_blank"&gt;https://ideas.powerbi.com&lt;/A&gt;&amp;nbsp;and voting for the idea.&lt;/P&gt;</description>
      <pubDate>Thu, 30 Nov 2017 04:04:26 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Service/number-formating-issue/m-p/314314#M36153</guid>
      <dc:creator>GilbertQ</dc:creator>
      <dc:date>2017-11-30T04:04:26Z</dc:date>
    </item>
    <item>
      <title>Re: number formating issue</title>
      <link>https://community.fabric.microsoft.com/t5/Service/number-formating-issue/m-p/314334#M36154</link>
      <description>&lt;P&gt;Could you consider a 2nd Formatting Measure for your cards?&amp;nbsp; Something like&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;PRE&gt;Formatted = Var MeasureResult = [YourMeasure]
RETURN
IF(
     MeasureResult = "na",
     "NA",
     (MeasureResult * 100) &amp;amp; "%"
)
      &lt;/PRE&gt;</description>
      <pubDate>Thu, 30 Nov 2017 05:52:30 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Service/number-formating-issue/m-p/314334#M36154</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-11-30T05:52:30Z</dc:date>
    </item>
    <item>
      <title>Re: number formating issue</title>
      <link>https://community.fabric.microsoft.com/t5/Service/number-formating-issue/m-p/314479#M36166</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="42234" data-lia-user-login="erihsehc" class="lia-mention lia-mention-user"&gt;erihsehc&lt;/a&gt;,&lt;BR /&gt;&lt;BR /&gt;As&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="38" data-lia-user-login="GilbertQ" class="lia-mention lia-mention-user"&gt;GilbertQ&lt;/a&gt;&amp;nbsp;posted, there is no way to format the measure. Please mark the solution&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="38" data-lia-user-login="GilbertQ" class="lia-mention lia-mention-user"&gt;GilbertQ&lt;/a&gt;&amp;nbsp;shared as answer because it resolve your issue. So that more people will get useful/helpful reply as answer.&lt;BR /&gt;&lt;BR /&gt;Best Regards,&lt;BR /&gt;Angelia&lt;/P&gt;</description>
      <pubDate>Thu, 30 Nov 2017 08:26:52 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Service/number-formating-issue/m-p/314479#M36166</guid>
      <dc:creator>v-huizhn-msft</dc:creator>
      <dc:date>2017-11-30T08:26:52Z</dc:date>
    </item>
    <item>
      <title>Re: number formating issue</title>
      <link>https://community.fabric.microsoft.com/t5/Service/number-formating-issue/m-p/314555#M36171</link>
      <description>&lt;P&gt;ok thanks for the help:manhappy:&lt;/P&gt;</description>
      <pubDate>Thu, 30 Nov 2017 09:31:17 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Service/number-formating-issue/m-p/314555#M36171</guid>
      <dc:creator>erihsehc</dc:creator>
      <dc:date>2017-11-30T09:31:17Z</dc:date>
    </item>
  </channel>
</rss>

