beadedbytes
Technical User
Please example below taken from part of a pivot table (exception: not included in pivot is column labeled as ‘Returns4’).
Code:
Mailing# Week# Ct Mailed Returns1 Returns2 Returns3 Returns4
Mailing1 Wk01 500,569 41 41 2.43% 0.01%
Wk02 0 335 376 22.31% 0.08%
Wk03 0 381 757 44.93% 0.15%
Wk04 0 354 1,111 65.93% 0.22%
Wk05 0 360 1,471 87.30% 0.29%
Wk06 0 214 1,685 100.00% 0.34%
Total 500,569 1,685
We want to be able to look at the numbers of returns from monthly mailings in a couple of different views. The export used to build the pivot table is comprised of the 1st four columns shown in the pivot table. For each mailing, 'Mailing#' and Total ‘Ct Mailed’ appear once in the raw data and returns from the mailing are provided by week only. And, we track 13-14 weeks for each mailing. See below for descriptions of Returns1, Returns2 and Returns3.
Code:
Returns1 Total number of returns by week
Returns2 Running cumulative total of returns by week
Returns3 Weekly cumulative total (Returns2) divided by
total number of returns (Total Returns1).
When the returns stop, this gives us a sense
of the return pattern for the mailing in question.
I would like to add another view to the pivot table -- ‘Returns4’ (description listed below). However, I have not been able to figure out how to incorporate a formula either by using a calculated field or the Pivot features under ‘Value Field Settings’ (‘Show values as’ coupled with ‘base field’).
Code:
Returns4 Its calculation -- number of cumulative returns (‘Returns2’)
divided by Total ‘Ct Mailed’.
This information tells us how well (or not) a mailing performed.
Thank you in advance for feedback and solution(s)!