|
Group: Forum Members
Posts: 69,
Visits: 1
|
All right, that worked like a champ! Let me make a note of some revisions to the KB Article that would make it easier to use:
Section 2.1: Add the following line:
From Pivot >> Data Groupings >> Values add a new value
Change the following line:
We will be performing drill-down on the same page. For the Report field, use the following expression: =Params![SiteUrl].STR
To
We will be performing drill-down on the same page. For the Report field, use the following expression: =Params![SiteUrl].STR + "/SitePages/DrillDownPage.aspx
(You are redirected to the top of your site collection if you don't add the location of the ASPX page to the SiteURL parameter)
Section 2.2: Change the following line:
The Action Type will be conditional using the following expression: =IF(TONUM(Params!DrillLevel.STR) >= 3, "None", "JumpToReport")"
To
Using the button next to "Action Type" create a conditional action using the following expression: =IF(TONUM(Params!DrillLevel.STR) >= 3, "None", "JumpToReport")
Sections 2.3, 6.1 & 6.2:
All of these sections have expressions that contain line breaks. I don't know if line breaks will cause errors within the charting software; I personally removed them.
Section 5.1: Change the following line:
5.1. For the Chart >> Chart Areas >> Axes >> Primary X >> Title
To
5.1. For the Chart >> Chart Areas >> Axes >> Primary X >> Title - "Text" field
Also, I would bold "Primary X" as I accidentally used the Primary Y since it is the first value in the Axes list. My fault, I know.
Section 6.2: Change the following line:
For the Report use: =Params![PageUrl].STR
To
=Params![SiteUrl].STR + "/SitePages/DrillDownPage.aspx
I might also include instructions on how to format the chart to look like the example, but that can be done by comparing the settings in the interactive drill down example to the chart that is being created.
Otherwise this is great! I may try to mock up a "simpler" example of my own that only has 1 layer of drill down.
Thanks a lot!
|