Hi,
I am building a crosstab report, with value of Textbox as count(field).
I want to add another column in the report with percent value w.r.t the textbox. I was able to add the column in the report, the problem is that the percent column is accepting decimal values, i tried using user-defined functions, changing it in textbox data bind property, but nothing seems to work.
I am populating the percent column using the following function:
public static decimal Qtr(int a)
{
return (a /5);
}
But only numeric values are displayed, I tried formatting options of the textbox too, but no success.
I ve attached the screenshot, please suggest something.
Thanks
I am building a crosstab report, with value of Textbox as count(field).
I want to add another column in the report with percent value w.r.t the textbox. I was able to add the column in the report, the problem is that the percent column is accepting decimal values, i tried using user-defined functions, changing it in textbox data bind property, but nothing seems to work.
I am populating the percent column using the following function:
public static decimal Qtr(int a)
{
return (a /5);
}
But only numeric values are displayed, I tried formatting options of the textbox too, but no success.
I ve attached the screenshot, please suggest something.
Thanks