Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Sheet1 was populated with column arrays in Range("A8:J50").
I wanted to creat a chart for column array as specified in cells A1, A2, A3 as rowbegin, rowend,and columnofinterest respectively. Soon after the chart was created all the values in Cells(*, *) were lost, and the macro ceased to function properly. Can you help me? Sub Creat_a_chart() Dim rowbegin, rowend, columnofinterest As Double Cells(1, 1) = 8 ' as given example Cells(2, 1) = 20 ' as given example Cells(3, 1) = 3 ' as given example rowbegin = Cells(1, 1) rowend = Cells(2, 1) columnofinterest = Cells(3, 1) Range(Cells(rowbegin, columnofinterest), _ Cells(rowend, columnofinterest)).Select Charts.Add ' From this point on, all the Cells(*, *) failed _ stating "Method 'Cells' of object '_Global' failed " ActiveChart.ChartType = xlLineMarkers On Error Resume Next ActiveChart.SetSourceData Source:=_ Sheets("Sheet1").Range(Cells(rowbegin, columnofinterest), _ Cells(rowend, columnofinterest)), PlotBy:=xlColumns ActiveChart.Location Whe=xlLocationAsObject, Name:="Sheet1" ActiveChart.HasLegend = False Cells(1, 2) = Cells(1, 1) ' value lost Cells(2, 2) = Cells(2, 1) ' value lost Cells(3, 2) = Cells(3, 1) ' value lost End Sub |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Very strange problem when inserting a picture in a 3D Chart | Charts and Charting in Excel | |||
Chart Auto Expand Problem | Excel Discussion (Misc queries) | |||
Title Block in Excel Chart - Size problem | Charts and Charting in Excel | |||
Excel chart problem | Excel Worksheet Functions | |||
Problem with Chart Title Formatting | Charts and Charting in Excel |