Formula/VBA to determine and display stacked chart

canthony24

Board Regular
Joined
Mar 24, 2016
Messages
70
Is it possible to have a formula or VBA to display a dynamic stacked chart? I have the data and the chart already created, just looking to see if this is possible.

The chart shows the number of vendors and sales % for each. If another cell, let's say A1=4, then display only the 4 vendors in the chart and so on. If A1 changes to 7, then display 7 vendors, with a max of up to 10 vendors in the chart.

Ideas?
 

Excel Facts

Select a hidden cell
Somehide hide payroll data in column G? Press F5. Type G1. Enter. Look in formula bar while you arrow down through G.
Yeah, this can be done, and probably doesn't even need VBA. What does your data look like?
 
Upvote 0
So in Cell B7, I have a countif formula to count the number of suppliers that equals up to 80% of sales. That changes whenever the source data is updated. In another section of the worksheet, I have a list of suppliers reading off of a pivot in another worksheet. It's just a reference formula, up to 10 suppliers since that is max number I want to display. Then that list is building the stacked chart.

This is the chart range, which is referencing from a pivot. A simple '=Pivot_DataZ5' etc etc. If B7 = 6, then show only show 6 suppliers, which will then update the chart. Once I get that figured out, I can make the chart range dynamic. But I'm trying to figure out how to make it so whenever B7 changes, the chart data does as well.

So if B7=10, it would look like this:

Last 52
COCA COLA51.0%
PEPSICO18.5%
COCACOLABOTTLERS SALES&SVC8.3%
CADBURY SCHWEPPES6.1%
NATIONAL BEVERAGE CORP5.0%
COTT BEVERAGES INC2.6%
WHITE ROCK PRODUCTS1.3%
TIPP ENTERPRISES NOVAMEX0.8%
POLAR BEVERAGES0.7%
RED BULL NORTH AMERICA INC0.5%

<tbody>
</tbody>


If B7=3, it would look like this:

Last 52
COCA COLA51.0%
PEPSICO18.5%
COCACOLABOTTLERS SALES&SVC8.3%

<tbody>
</tbody>

<tbody>
</tbody>
 
Last edited:
Upvote 0
And what is the address of the range containing the 10 or 3 or whatever number of rows? What is the cell address of the cell above "COCA COLA"?

I'll assume the range begins in cell D2, as shown below.

Run69n8.png


The active cell is D7, which has the number of rows to show.

We'll create a couple dynamic Names that the chart will use.

Go to Formulas tab > Define Name. For Name, enter "xCategories", keep Workbook as Scope, and for Refers To enter this formula and click OK:

Code:
=OFFSET(Sheet1!$D$2,1,0,Sheet1!$B$7,1)

This means from our home cell D2, or range is one cell down and zero cells to the right (i.e., D3), and it is B7 rows tall and 1 column wide. So if D7 is 10, it's the range D3:D12. If D7 is 3, it's the range D3:D5.

Return to Formulas tab > Define Name. For Name, enter "yValues", keep Workbook as Scope, and for Refers To enter this formula and click OK:

Code:
=OFFSET(xCategories,0,1)

That means from our reference range xCategories, which we've just defined, use the range zero rows down and one column right. So it has the same number of rows as xCategories.

Make your chart with the range D2:E12 (I made a bar chart, first chart below). Click on the series, and notice the formula in the Formula Bar:

Code:
=SERIES(Sheet1!$E$2,Sheet1!$D$3:$D$12,Sheet1!$E$3:$E$12,1)

Edit this right in the Formula bar, so it looks like this:

Code:
=SERIES(Sheet1!$E$2,Sheet1!xCategories,Sheet1!yValues,1)

Excel will adjust it:

Code:
=SERIES(Sheet1!$E$2,'Workbook Name.xlsx'!xCategories,'Workbook Name.xlsx'!yValues,1)

If D7 is 10, it still looks like the top chart. If D7 is 3, it looks like the bottom chart.

aXODF4J.png


I have several similar examples on my web site:

Dynamic Charts
Dynamic Chart Review
Dynamic Chart with Multiple Series
Dynamic Charts in Excel 2016 for Mac
 
Upvote 0
Is there a way to make the list only display the number value selected? So the chart and the list would only show 3, 4 etc?

The chart works perfectly, want to see if the list can do the same.
 
Upvote 0
Your list of companies and percentages link to other cells, right? So still using D2 as my data anchor cell, I would do something like this:

=IF($D$7>=ROW()-ROW($D$2),CellLink,"")

So if D7 is 3, cells D3 through D5 show the linked value and cells D6 and lower show "", so they appear blank.
 
Upvote 0
I figured it out. I was confused on the 'CellLink', but that is the cell I want the data to come from. Thanks for all your help!!
 
Upvote 0

Forum statistics

Threads
1,215,539
Messages
6,125,403
Members
449,222
Latest member
taner zz

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