Page 1 of 1

Report Page Name

Posted: Fri Jun 10, 2011 3:10 pm
by kris@bplogix.com
How can I use a variable for the report page names? I would like to display a different name of a page when I drill down.

Report Page Name

Posted: Mon Jun 13, 2011 7:40 am
by Alex K.
Hello,

In this case, you can use additional code in the events.
Please see the sample report in attachment.

Thank you.

Report Page Name

Posted: Thu Jun 23, 2011 6:53 pm
by kris@bplogix.com
This not exactly what I was looking for.

I would like to set the page name to a variable. Please see attached images.

Report Page Name

Posted: Fri Jun 24, 2011 1:44 am
by Ivan
Hello,

Please try to use the following code in the GetTag event of the Page3:

Code: Select all

(sender as StiPage).Alias = (string)this["parameter1"];
Thank you.