ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Discussion (Misc queries) (https://www.excelbanter.com/excel-discussion-misc-queries/)
-   -   How to create Drop down list in Chart? (https://www.excelbanter.com/excel-discussion-misc-queries/216063-how-create-drop-down-list-chart.html)

Khaled

How to create Drop down list in Chart?
 
I would like to Create A chart i Excel with Drop Down list appears on the
Chart to be able to select the data to be plotted on the chart.

joel

How to create Drop down list in Chart?
 
You can't use a drop down box but you can use an Input Box. This macro will
work if you already have a chart on the worksheet. Change Chart Name "Chart
1" and sheet name as required.

Sub GetChart()
'
Set ChartArea = Application.InputBox( _
prompt:="Select Chart Range", Type:=8)

ActiveSheet.ChartObjects("Chart 1").Activate
ActiveChart.ChartArea.Select
ActiveChart.SetSourceData _
Source:=Sheets("Sheet2").Range(ChartArea.Address)
End Sub


"Khaled" wrote:

I would like to Create A chart i Excel with Drop Down list appears on the
Chart to be able to select the data to be plotted on the chart.


Suleman Peerzade[_2_]

How to create Drop down list in Chart?
 
HI,

You can use the pivot table which can do the needfull in your case. It gives
you the drop down arrow to select and also the chart
Menu bar DataPivot table
--
Thanks
Suleman Peerzade


"Khaled" wrote:

I would like to Create A chart i Excel with Drop Down list appears on the
Chart to be able to select the data to be plotted on the chart.



All times are GMT +1. The time now is 02:29 PM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
ExcelBanter.com