Подскажите, пожалуйста, в чем дело
Пишу такой вот код:
Charts.Add
ActiveChart.ChartType = xlLineMarkers
ActiveChart.SetSourceData Source:=Sheets("лист1").Range(Cells(ur + 3, uc + 1), Cells(ur * 2 + 3, uc + 1)), PlotBy:=xlColumns
в этой строке выдает ошибку: Method 'Cells' of object '_Global failed'
ActiveChart.SeriesCollection(1).XValues = "=лист1!Cells(ur + 3, 1), Cells(ur * 2 + 3, 1)"
ActiveChart.Location Where:=xlLocationAsNewSheet, Name:= _
"график"
With ActiveChart
.HasTitle = True
.ChartTitle.Characters.Text = _
"ффф"
.Axes(xlCategory, xlPrimary).HasTitle = True
.Axes(xlCategory, xlPrimary).AxisTitle.Characters.Text = "ввв"
.Axes(xlValue, xlPrimary).HasTitle = True
.Axes(xlValue, xlPrimary).AxisTitle.Characters.Text = "ааа"
End With
ActiveChart.ChartArea.Select
ActiveChart.PlotArea.Select
ActiveChart.SeriesCollection(1).Select
ActiveChart.ChartArea.Select