Hello,
Currently, I have a table that will automatically update when new data is added to a spreadsheet. I am able to easily create a macro that will graph a set range, but how do I get it to automatically update the range so that it graphs all the right data? My goal is to be able to create a button that I can press at any time that will run a macro on this table and graph the results.
Right now, my code is:
Sub Macro1()
'
' Macro1 Macro
' Macro recorded 6/24/2010 by Nicole
'
''
Range("R1:S12").Select
Range("S12").Activate
Charts.Add
ActiveChart.ChartType = xlLineMarkers
ActiveChart.SetSourceData Source:=Sheets("Intakes").Range("R1:S12"),PlotBy _
:=xlColumns
ActiveChart.Location Where:=xlLocationAsObject, Name:="Intakes"
With ActiveChart
.HasTitle = True
.ChartTitle.Characters.Text = "# Cases that day"
.Axes(xlCategory, xlPrimary).HasTitle = False
.Axes(xlValue, xlPrimary).HasTitle = False
End With
End Sub
Thanks,
Nicole