<?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: Rollup Using SSRS Expression and make a row bold in Report Server</title>
    <link>https://community.fabric.microsoft.com/t5/Report-Server/Rollup-Using-SSRS-Expression-and-make-a-row-bold/m-p/3047965#M28567</link>
    <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;To produce the output shown above, you need to:&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;Create a blank report&lt;/LI&gt;&lt;LI&gt;Create a data source, select "Enter Data" as your Connection Type, and click OK&lt;BR /&gt;&lt;img /&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;Create a Datasets, use the Data Source --&amp;gt; Query Type (Text) created in Step 2. Use the following, XML as the source&lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;&amp;lt;Query&amp;gt;
  &amp;lt;XmlData&amp;gt;
    &amp;lt;Data&amp;gt;
      &amp;lt;Row&amp;gt;
        &amp;lt;Company&amp;gt;ACME USA&amp;lt;/Company&amp;gt;
        &amp;lt;Total_A&amp;gt;100&amp;lt;/Total_A&amp;gt;
        &amp;lt;Total_B&amp;gt;50&amp;lt;/Total_B&amp;gt;
        &amp;lt;RowOrder&amp;gt;0&amp;lt;/RowOrder&amp;gt;
      &amp;lt;/Row&amp;gt;
      &amp;lt;Row&amp;gt;
        &amp;lt;Company&amp;gt;ACME Canada&amp;lt;/Company&amp;gt;
        &amp;lt;Total_A&amp;gt;100&amp;lt;/Total_A&amp;gt;
        &amp;lt;Total_B&amp;gt;40&amp;lt;/Total_B&amp;gt;
        &amp;lt;RowOrder&amp;gt;1&amp;lt;/RowOrder&amp;gt;
      &amp;lt;/Row&amp;gt;
      &amp;lt;Row&amp;gt;
        &amp;lt;Company&amp;gt;ACME Mexico&amp;lt;/Company&amp;gt;
        &amp;lt;Total_A&amp;gt;40&amp;lt;/Total_A&amp;gt;
        &amp;lt;Total_B&amp;gt;100&amp;lt;/Total_B&amp;gt;
        &amp;lt;RowOrder&amp;gt;2&amp;lt;/RowOrder&amp;gt;
      &amp;lt;/Row&amp;gt;
      &amp;lt;Row&amp;gt;
        &amp;lt;Company&amp;gt;Total&amp;lt;/Company&amp;gt;
        &amp;lt;Total_A&amp;gt;240&amp;lt;/Total_A&amp;gt;
        &amp;lt;Total_B&amp;gt;190&amp;lt;/Total_B&amp;gt;
        &amp;lt;RowOrder&amp;gt;3&amp;lt;/RowOrder&amp;gt;
      &amp;lt;/Row&amp;gt;
    &amp;lt;/Data&amp;gt;
  &amp;lt;/XmlData&amp;gt;
  &amp;lt;ElementPath&amp;gt;Data{}/Row{Company(String),Total_A(Float),Total_B(Float),RowOrder(Float)}&amp;lt;/ElementPath&amp;gt;
&amp;lt;/Query&amp;gt;​&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;Add the table to the report&lt;BR /&gt;&lt;img /&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/LI&gt;&lt;LI&gt;Right-click on the detail row [Company] and select Text Box property&lt;BR /&gt;&lt;img /&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;Click the &lt;STRONG&gt;Fill&amp;nbsp;&lt;/STRONG&gt;option and enter the following expression&lt;BR /&gt;=IIF(Fields!Company.Value="Total","LightSteelBlue","Transparent")&lt;/LI&gt;&lt;LI&gt;Repeat Step 6 for the other columns&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;I hope it helps. Unfortunately, the forum does not allow me to upload the rdl or any other file format.&lt;/P&gt;</description>
    <pubDate>Fri, 27 Jan 2023 21:14:55 GMT</pubDate>
    <dc:creator>Medina</dc:creator>
    <dc:date>2023-01-27T21:14:55Z</dc:date>
    <item>
      <title>Rollup Using SSRS Expression and make a row bold</title>
      <link>https://community.fabric.microsoft.com/t5/Report-Server/Rollup-Using-SSRS-Expression-and-make-a-row-bold/m-p/3006594#M28353</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;I have a requirement to make the total row bold but when I try this expression it makes the entire field bold.&lt;/P&gt;&lt;P&gt;=IIf(Fields!Submitted_Surveys_with_LMI.Value="Total","Bold","Default"). I want only the Row Total bold. If this cannot work how can I write an expression for RollUP for each field to get the total so that I can have control over fields.&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;</description>
      <pubDate>Fri, 06 Jan 2023 22:44:37 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Report-Server/Rollup-Using-SSRS-Expression-and-make-a-row-bold/m-p/3006594#M28353</guid>
      <dc:creator>M_nwadibia</dc:creator>
      <dc:date>2023-01-06T22:44:37Z</dc:date>
    </item>
    <item>
      <title>Re: Rollup Using SSRS Expression and make a row bold</title>
      <link>https://community.fabric.microsoft.com/t5/Report-Server/Rollup-Using-SSRS-Expression-and-make-a-row-bold/m-p/3046287#M28556</link>
      <description>&lt;P&gt;Hi,&lt;BR /&gt;Reading the expression, made me think the "TOTAL" is part of the recordset, if that is the case, I would apply the formatting condition on each column.&lt;BR /&gt;Please, let me know if I am not reading your question correctly.&lt;BR /&gt;Thanks!&lt;/P&gt;</description>
      <pubDate>Thu, 26 Jan 2023 23:17:51 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Report-Server/Rollup-Using-SSRS-Expression-and-make-a-row-bold/m-p/3046287#M28556</guid>
      <dc:creator>Medina</dc:creator>
      <dc:date>2023-01-26T23:17:51Z</dc:date>
    </item>
    <item>
      <title>Re: Rollup Using SSRS Expression and make a row bold</title>
      <link>https://community.fabric.microsoft.com/t5/Report-Server/Rollup-Using-SSRS-Expression-and-make-a-row-bold/m-p/3047756#M28565</link>
      <description>&lt;P&gt;Yes I only want the last row made bold.&lt;/P&gt;</description>
      <pubDate>Fri, 27 Jan 2023 17:40:59 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Report-Server/Rollup-Using-SSRS-Expression-and-make-a-row-bold/m-p/3047756#M28565</guid>
      <dc:creator>M_nwadibia</dc:creator>
      <dc:date>2023-01-27T17:40:59Z</dc:date>
    </item>
    <item>
      <title>Re: Rollup Using SSRS Expression and make a row bold</title>
      <link>https://community.fabric.microsoft.com/t5/Report-Server/Rollup-Using-SSRS-Expression-and-make-a-row-bold/m-p/3047965#M28567</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;To produce the output shown above, you need to:&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;Create a blank report&lt;/LI&gt;&lt;LI&gt;Create a data source, select "Enter Data" as your Connection Type, and click OK&lt;BR /&gt;&lt;img /&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;Create a Datasets, use the Data Source --&amp;gt; Query Type (Text) created in Step 2. Use the following, XML as the source&lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;&amp;lt;Query&amp;gt;
  &amp;lt;XmlData&amp;gt;
    &amp;lt;Data&amp;gt;
      &amp;lt;Row&amp;gt;
        &amp;lt;Company&amp;gt;ACME USA&amp;lt;/Company&amp;gt;
        &amp;lt;Total_A&amp;gt;100&amp;lt;/Total_A&amp;gt;
        &amp;lt;Total_B&amp;gt;50&amp;lt;/Total_B&amp;gt;
        &amp;lt;RowOrder&amp;gt;0&amp;lt;/RowOrder&amp;gt;
      &amp;lt;/Row&amp;gt;
      &amp;lt;Row&amp;gt;
        &amp;lt;Company&amp;gt;ACME Canada&amp;lt;/Company&amp;gt;
        &amp;lt;Total_A&amp;gt;100&amp;lt;/Total_A&amp;gt;
        &amp;lt;Total_B&amp;gt;40&amp;lt;/Total_B&amp;gt;
        &amp;lt;RowOrder&amp;gt;1&amp;lt;/RowOrder&amp;gt;
      &amp;lt;/Row&amp;gt;
      &amp;lt;Row&amp;gt;
        &amp;lt;Company&amp;gt;ACME Mexico&amp;lt;/Company&amp;gt;
        &amp;lt;Total_A&amp;gt;40&amp;lt;/Total_A&amp;gt;
        &amp;lt;Total_B&amp;gt;100&amp;lt;/Total_B&amp;gt;
        &amp;lt;RowOrder&amp;gt;2&amp;lt;/RowOrder&amp;gt;
      &amp;lt;/Row&amp;gt;
      &amp;lt;Row&amp;gt;
        &amp;lt;Company&amp;gt;Total&amp;lt;/Company&amp;gt;
        &amp;lt;Total_A&amp;gt;240&amp;lt;/Total_A&amp;gt;
        &amp;lt;Total_B&amp;gt;190&amp;lt;/Total_B&amp;gt;
        &amp;lt;RowOrder&amp;gt;3&amp;lt;/RowOrder&amp;gt;
      &amp;lt;/Row&amp;gt;
    &amp;lt;/Data&amp;gt;
  &amp;lt;/XmlData&amp;gt;
  &amp;lt;ElementPath&amp;gt;Data{}/Row{Company(String),Total_A(Float),Total_B(Float),RowOrder(Float)}&amp;lt;/ElementPath&amp;gt;
&amp;lt;/Query&amp;gt;​&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;Add the table to the report&lt;BR /&gt;&lt;img /&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/LI&gt;&lt;LI&gt;Right-click on the detail row [Company] and select Text Box property&lt;BR /&gt;&lt;img /&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;Click the &lt;STRONG&gt;Fill&amp;nbsp;&lt;/STRONG&gt;option and enter the following expression&lt;BR /&gt;=IIF(Fields!Company.Value="Total","LightSteelBlue","Transparent")&lt;/LI&gt;&lt;LI&gt;Repeat Step 6 for the other columns&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;I hope it helps. Unfortunately, the forum does not allow me to upload the rdl or any other file format.&lt;/P&gt;</description>
      <pubDate>Fri, 27 Jan 2023 21:14:55 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Report-Server/Rollup-Using-SSRS-Expression-and-make-a-row-bold/m-p/3047965#M28567</guid>
      <dc:creator>Medina</dc:creator>
      <dc:date>2023-01-27T21:14:55Z</dc:date>
    </item>
  </channel>
</rss>

