Interject Documentation > L6 Working with Pivot Tables
Estimated reading time: 6 minutesOverview
Pivot tables are a flexible and valuable tool for analyzing data in Excel. INTERJECT makes it easier to scale and distribute pivot tables. In this walk-through you will set up a pivot table based on an INTERJECT report. There are a couple advantages to combining INTERJECT with pivot tables. It provides the ability to build security into pivot table reports, users only see data relative to their credentials. Also, by allowing filters that are used at the database level, the amount of data in a user’s pivot table is limited to data that is needed only for the analysis.
Jump to any section of this walk-through by clicking the links below.
* #### Building the Support Tab
* #### Building the Pivot Table
* #### Customizing the Pivot Table
Building the Support Tab
Step 1: In this exercise, you will use the Customer Collections Demo from a previous Walk-through . This demo can be found in the Report Library under the INTERJECT Demo folder as shown below.
**
**
Step 2: When you open the report it will look like the screenshot below. Select the CustomerAccountDetail tab.
** **
Step 3: To build the Pivot table, right click the CustomerAccountDetail tab and make another copy so you can complete the following steps.
Step 4: In the copy sheet dialog box, select move to end to make the copy at the end of the list of tabs.
Now rename the tab something that represents the data, such as TargetForPivotTable
Step 5: Once the tab is copied, you are going to insert 3 columns, separating the date column (column I) into Month, Year, and Year-Mth columns.
In the Month column in cell J21, type =TEXT(I21,”mm”)
In the Year column in K21, type =YEAR($I21)
In the Year-Mth column in L21, type =TEXT(I21,”yyyy-mm”)
Step 6: Next, you are going to add two parameters to the report by inserting two rows below Show Unapplied Only and labeling them Begin Date and End Date .
Step 7: Select cell C14 and copy it to C18 and C19.
Step 8: Use the quick tools menu in the interject ribbon. In the dialog box select Freeze/UnFreeze Panes (current tab) and click Run and Close .
Step 9: Select the report formula in cell C4, then select the function wizard.
Step 10: In the parameters section of the dialog box change the Parameters field to this: Param(C14,,C16,,C18,C19)
Step 11: Hide rows C15, and C17 since they will not be needed for this report but exist as possible parameters in the stored procedure.
Note: The parameter section of the report should look like the following screenshot
Step 12: Now that you have entered the fields, you can use Pull Data ** on the report, filtering for companies with **Market in their names. First type Market in the filter cell C1
** **
Step 13: In the screenshot below, you can see there are four steps to preparing the contents of the pivot table.
- Select the Insert ribbon as noted below.
- Within the Insert ribbon, click the PivotTable menu item so the Create PivotTable window appears.
- Using the Select a table or range box, select all the columns and rows containing the data as noted below. Important: Be sure to include row 21, the column labels on the top of the range, and include the bottom anchor row, which is one row past the last customer record. The anchor row is important since it will grow and shrink as the data is pulled and cleared. Exclude the Paid? column from the table range.
- Click the OK button, and a new tab will be created with the new pivot table.
Building the Pivot Table
Step 1: From here you can pivot in any way needed.
Step 2: Use the PivotTable pane on the right to place Year in the columns. Company Name and Type go to rows, Country goes in Filters. Then, choose the Amount to be summed. Your pivot table should match the screenshot below.
Customizing the Pivot Table
Step 1: Prepare the pivot table worksheet to interact with the INTERJECT worksheet. That way the data can be updated based on select filters, and security can be considered. You will insert the configuration rows at the top as you normally do with INTERJECT reports, but Report Formulas is the only section being used. You will also add a Title and hide the grids.
Step 2: Now set up the ReportRun() function. This will cause the target sheet to perform a ** Pull Data ** or Clear Data when Pull Data is triggered from the pivot table worksheet.
Step 3: In the ReportCellToRun argument, select the TargetForPivotTable tab and select the ReportRange() formula in C4.
Step 4: Type True in the RunEntireWorksheet argument. And type Pull in the OnAction argument. This will trigger the second worksheet to run only when Pull Data is performed on the current pivot table worksheet.
On a second line under row 4 (insert new row if needed), you will do the same for the second ReportRun(). This time, however, type “PullClear” in the OnAction argument so that the pivot table clear function works correctly.
**
**
Step 5: Now that the ReportRange() fields are prepared, you can add filters for the searches. Here you will add Company Name, Contact ID, CustomerID, Show Unapplied Only, Begin Date, End Date. Both parameter fields for the pivot table sheet and the target sheet should be identical. These are the same filters as seen in the worksheet TargetForPivotTable .
Step 6: In C14, for the Company Name, type =if(Pivot!B11=””,”“,Pivot!B11) . This formula will make the filters equal between pages and if the Pivot worksheet filter is blank, it will be blank as well. Normally, Excel will make the result 0 if not handled with this formula. Copy down the formula in C14 through C19 so the other filters are linked as well.
Step 7: Now go back to the pivot table and make sure it is working properly. Enter the following filters to check the pull.
Now you can see that the table only pulled data from transactions occurring in 1997, so the filters, ReportRun(), and pivot table are working as they should.
For more ways to work with a pivot table, see the pivot table section on the customer aging walk-through.