<?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 Custom Number Formatting in Power BI Report Builder in Report Server</title>
    <link>https://community.fabric.microsoft.com/t5/Report-Server/Custom-Number-Formatting-in-Power-BI-Report-Builder/m-p/1633209#M17784</link>
    <description>&lt;P&gt;Hi Team,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am really frustrated and struggling to make one of the CHILD group numbers to be formatted as % while the rest of all should be in CURRENCY [$].&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Here is the example where I am trying to format my last ROW where the row label is "Pct Difference" and the rest of the label rows should be formated as CURRENCY.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;So far I have tried multiple Expressions but unable to get the desired results.&lt;/P&gt;&lt;P&gt;Few of the expressions I have tried till now;&lt;/P&gt;&lt;P&gt;1.&amp;nbsp;=IIF(Fields!Child2.Value = "Pct Difference", FormatPercent(Fields!asset_curr.Value, "Dataset1",0), "Default")&lt;/P&gt;&lt;P&gt;2.&amp;nbsp;=IIF(Fields!Child2.Value = "Pct Difference", FormatPercent(Fields!asset_curr.Value, "Dataset1"), '$'#,0.00;('$'#,0.00))&lt;/P&gt;&lt;P&gt;3.&amp;nbsp;=IIF(Fields!Child2.Value = "Pct Difference", Format(Fields!asset_curr.Value, 0.00%), Format(Fields!asset_curr.Value,'$'#,0.00;('$'#,0.00)))&lt;/P&gt;&lt;P&gt;4.&amp;nbsp;=IIF(Fields!Child2.Value = "Pct Difference", Format(Fields!asset_curr.Value,"P1"),"")&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This is the expected output I am trying to achieve.&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;Please help&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Ram&lt;/P&gt;</description>
    <pubDate>Sat, 30 Jan 2021 12:24:22 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2021-01-30T12:24:22Z</dc:date>
    <item>
      <title>Custom Number Formatting in Power BI Report Builder</title>
      <link>https://community.fabric.microsoft.com/t5/Report-Server/Custom-Number-Formatting-in-Power-BI-Report-Builder/m-p/1633209#M17784</link>
      <description>&lt;P&gt;Hi Team,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am really frustrated and struggling to make one of the CHILD group numbers to be formatted as % while the rest of all should be in CURRENCY [$].&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Here is the example where I am trying to format my last ROW where the row label is "Pct Difference" and the rest of the label rows should be formated as CURRENCY.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;So far I have tried multiple Expressions but unable to get the desired results.&lt;/P&gt;&lt;P&gt;Few of the expressions I have tried till now;&lt;/P&gt;&lt;P&gt;1.&amp;nbsp;=IIF(Fields!Child2.Value = "Pct Difference", FormatPercent(Fields!asset_curr.Value, "Dataset1",0), "Default")&lt;/P&gt;&lt;P&gt;2.&amp;nbsp;=IIF(Fields!Child2.Value = "Pct Difference", FormatPercent(Fields!asset_curr.Value, "Dataset1"), '$'#,0.00;('$'#,0.00))&lt;/P&gt;&lt;P&gt;3.&amp;nbsp;=IIF(Fields!Child2.Value = "Pct Difference", Format(Fields!asset_curr.Value, 0.00%), Format(Fields!asset_curr.Value,'$'#,0.00;('$'#,0.00)))&lt;/P&gt;&lt;P&gt;4.&amp;nbsp;=IIF(Fields!Child2.Value = "Pct Difference", Format(Fields!asset_curr.Value,"P1"),"")&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This is the expected output I am trying to achieve.&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;Please help&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Ram&lt;/P&gt;</description>
      <pubDate>Sat, 30 Jan 2021 12:24:22 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Report-Server/Custom-Number-Formatting-in-Power-BI-Report-Builder/m-p/1633209#M17784</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2021-01-30T12:24:22Z</dc:date>
    </item>
    <item>
      <title>Re: Custom Number Formatting in Power BI Report Builder</title>
      <link>https://community.fabric.microsoft.com/t5/Report-Server/Custom-Number-Formatting-in-Power-BI-Report-Builder/m-p/1636409#M17809</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;First, try ask in another formum: DAX commands and tips&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Second, I think is not good idea use multiple measures/scales in single column, better is design it with multiple measure columns (like Count, Amount, AmountDifference, AmountDifferencePct), but I do not know story behind it.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;But, in case when need format single column by different way you can use if, switch and format function. Also depends if you need row level value, or measure. If row level value it is easy&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;IIF(Fields!Child2.Value = "Pct Difference", Format(Fields!asset_curr.Value, "0.00%"), Format(Fields!asset_curr.Value,"\$#,0.00"))&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;If it is measure you can try:&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.powerbi.com/t5/Report-Server/DAX-expression-using-specific-field/m-p/1633967#M17761" target="_blank"&gt;Solved: Re: DAX expression using specific field - Microsoft Power BI Community&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 01 Feb 2021 17:24:21 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Report-Server/Custom-Number-Formatting-in-Power-BI-Report-Builder/m-p/1636409#M17809</guid>
      <dc:creator>josef78</dc:creator>
      <dc:date>2021-02-01T17:24:21Z</dc:date>
    </item>
    <item>
      <title>Re: Custom Number Formatting in Power BI Report Builder</title>
      <link>https://community.fabric.microsoft.com/t5/Report-Server/Custom-Number-Formatting-in-Power-BI-Report-Builder/m-p/1637641#M17837</link>
      <description>&lt;P&gt;Where are you setting this expression? If you just right click on the cell and edit the Expression you are setting the expression on the value property, But you can use expressions in almost all the properties in Report Builder. I woud suggest trying to set the &lt;STRONG&gt;Format&lt;/STRONG&gt; property of the cell using an expression something like the following:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;=IIF(Fields!Child2.Value = "Pct Difference", "0,00%;-0.00%" , "$#,0.00;($#,0.00)")&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 02 Feb 2021 05:06:33 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Report-Server/Custom-Number-Formatting-in-Power-BI-Report-Builder/m-p/1637641#M17837</guid>
      <dc:creator>d_gosbell</dc:creator>
      <dc:date>2021-02-02T05:06:33Z</dc:date>
    </item>
  </channel>
</rss>

