Try this: ="Percentage is " &
Format((Fields!A1.Value/Fields!B1.Value)/100.0, "p") & " of Total stores"
--
Ravi Mumulla (Microsoft)
SQL Server Reporting Services
This posting is provided "AS IS" with no warranties, and confers no rights.
[quoted text, click to view] "Danni Liao" <danniliao@yahoo.com> wrote in message
news:9d716b4a.0408231056.2d1b695e@posting.google.com...
> Hi,
>
> In the group footer I want to show:
>
> Total store with ABC systems is: 33% of Total stores
>
> 33% is a calculated field.
>
> The expression for this is:
> "Total store with ABC systems is: " & =Fields!A1.Value/Fields!B1.Value
> & " of Total stores"
> I merged 3 cells and put this expression is in one text box, this
> output would be:
> summary 0.33333333333 of Total stores
>
> So I split the cell into three:
> in first cell: Total store with ABC systems is:
>
> in second cell: =Fields!A1.Value/Fields!B1.Value (format set to p0)
>
> in third cell: of Total stores
>
> but the width of percentage field is limited by the table column, so
> the 33% would be either too far from the first cell or from the third
> cell.
>
> What can I do to concatenate them into one line without too much
> space?
>
>
> Thanks in advance.
> Danni