Running total in - hidden columns in chart based on date

nielf

Board Regular
Joined
Nov 13, 2012
Messages
69
I'm trying to create a PivotChart like the one below. As we're not yet not into December, I would like to hide the column for month 12 - but still display the target for the month as shown below.

g1lXUwK.png


The 'actual' values (the columns) are shown as 'Running Total In' while there's no calculation for the 'target' values (line). When I use 'Running Total In' all of the months will be filled out even though there's no data for the month - and I guess that is also exactly what a 'running total' is supposed to do.

Is there anyway I can hide the columns based on today's date? In the chart above I have simply hidden the column manually.

My data looks like this:

nL7OuDE.png
 

Excel Facts

Using Function Arguments with nested formulas
If writing INDEX in Func. Arguments, type MATCH(. Use the mouse to click inside MATCH in the formula bar. Dialog switches to MATCH.
On way to tackle the issue is create another column that calculates your rules to use as a report filter. For example, assuming you only want complete months for the current year, starting in row 2:
<month(today())
<month(today())
<year(today()),and(month(a2)<month(today()),year(a2)=year(today())))[ code]
<year(today()),and(month(a2)<month(today()),year(a2)=year(today())))
'if we're only dealing with this year:
<month(today())

=MONTH(A2)'<'MONTH(TODAY())
<month(today())
'If we're dealing with multi-years in the A column:
<year(today()),and(month(a2)<month(today()),year(a2)=year(today())))[ code]
=OR(YEAR(A2)'<'YEAR(TODAY()),AND(MONTH(A2)'<'MONTH(TODAY()),YEAR(A2)=YEAR(TODAY())))
'pull the apostrohe's, would't display the code without them
</year(today()),and(month(a2)<month(today()),year(a2)=year(today())))[></month(today())

Returns TRUE for any month less than the current month. So you'd just set your pivot chart to use a filter of TRUE, and you can always hide this column if it's disruptive.

(It really doesn't like the code display)</month(today())
</year(today()),and(month(a2)<month(today()),year(a2)=year(today())))
</year(today()),and(month(a2)<month(today()),year(a2)=year(today())))[></month(today())
</month(today())
 
Last edited:
Upvote 0
Thanks for you reply, Derek.

My initial thought was to use a filter like that. However, the problem is that it hides the entire month:

RBsF75O.png


I would like to display all the months at all times but the columns (actual) should only be visible if we have reached that month. E.g. now that we're in November the chart should display columns for the first 11 months but not for month 12 (even though it is calculated because of the 'running total in' calculation used).

g1lXUwK.png


I was wondering if it would be possible to use conditional formatting for this somehow.
 
Last edited:
Upvote 0
I found a workable solution.

Instead of using the 'Running Total In' Excel Pivot function I created a helper column calculate the running total. Afterwards I used an IF formula to filter the dates that are greater than today. That way I could 'hide' the colmn for the dates that are in the future.
 
Upvote 0

Forum statistics

Threads
1,214,653
Messages
6,120,751
Members
448,989
Latest member
mariah3

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top