I am trying to filter a Total_Effect field in a pivot table based on two filters. The first filter is for value less than 0% and this result is then filtered to give me the bottom five results. The following shows how the source data could look like (note I have simplified the source data for this example). In the first example, it should give me the value of -0.20%, -0.80% & -1.00% and the second example should produce value of -0.15%, -0.20%, -0.40%, -0.80% & -1.00%.
Stock Total_Effect
A 0.30%
B -0.20%
C -1.00%
D -0.80%
E 1.10%
Stock Total_Effect
A 0.30%
B -0.20%
C -1.00%
D -0.80%
E 1.10%
F -0.40%
G -0.15%
I know the vba code for filtering value less than 0 (shown below in bold) but don't know how to add another filter on the result of the first filter.
Thanks in advance![]()
Please Login or Register to view this content.
Bookmarks