I have a report that is built vertically so that there are a range of numerical attributes in each column, decimals, integers and percentages. Some Rows are:
Billable Hours
Number of calls
Abandon Rate
and then I have a column for each day of the week.
My problem is that I want to export to excel the value "Abandon Rate" as a percentage with the percent sign as a number and not a text. I have tried numerous expressions such as
IIF(Fields!Report_Section.Value="A" AND Fields!Sequence.Value="11",FormatPercent(Fields!Monday.Value),cdbl(Fields!Monday.Value))
in both the expressions box and the text box numbers, custom expressions box. So far I have had no luck. Any advise? Thank you.