|
お願いします。
下記に記載する表よりデータを取得しグラフ作成を試みています。
表は2点(データ1、データ2)があります。
表に記載されたデータを「グラフ作成」ボタンを押すことでグラフ表示をします。
ここで問題ですが
1、グラフ作成ボタンを押すと削除しない限りグラフが増えていく
回避方法として先ず既存のグラフを一旦削除して新たに作成するのが良いと
思いますが方法が分かりません。
2、「グラフ作成1」「グラフ作成2」2つのボタンがありますが先に
グラフ作成2を実行するとエラーになる。
これの回避方法が分かりません。
何方かご指導をお願いいたします。
A B C D E F G H I J K L
1
2 グラフ表示領域
3
4
5
6
7
8
9
・名称:データ1 「グラフ作成1」 ←マクロ実行ボタン
・日付 1 2 3 4 5・・・・
40品1 7 8 7 8 7
41品2 6 8 7 5 3
42品3 9 6 5 7 5
43品4
44品5
45
46
47名称:データ2 「グラフ作成2」 ←マクロ実行ボタン
48日付 1 2 3 4 5・・・・
49品6
50品7
51品8
52品9
53品10
以下のマクロ2点を標準モジュールで操作しています
Sub グラフ作成1()
Dim datarg As Range
Dim graphrg As Range
Dim i As Integer
Set datarg = Range("a40:k44")
Set graphrg = Range("b1:M14")
ActiveSheet.ChartObjects.Add graphrg.Left, graphrg.Top, graphrg.Width, graphrg.Height
ActiveSheet.ChartObjects(1).Activate
ActiveChart.SetSourceData datarg, xlRows
'グラフ種類
ActiveChart.ChartType = xlLine
'タイトル
ActiveChart.HasTitle = True
ActiveChart.ChartTitle.Text = Range("a38").Value
With ActiveChart.ChartTitle
.Font.Size = 15
.Border.ColorIndex = 5
End With
'軸ラベル
With ActiveChart.Axes(xlCategory, xlPrimary)
.HasTitle = True
.AxisTitle.Text = "日付"
.AxisTitle.Font.Size = 12
End With
With ActiveChart.Axes(xlValue, xlPrimary)
.HasTitle = True
.AxisTitle.Text = Range("b47").Value
.AxisTitle.Font.Size = 14
End With
End Sub
Sub グラフ作成2()
Dim datarg As Range
Dim graphrg As Range
Dim i As Integer
Set datarg = Range("a49:k53")
Set graphrg = Range("b17:M31")
ActiveSheet.ChartObjects.Add graphrg.Left, graphrg.Top, graphrg.Width, graphrg.Height
ActiveSheet.ChartObjects(2).Activate
ActiveChart.SetSourceData datarg, xlRows
'グラフ種類
ActiveChart.ChartType = xlLine
'タイトル
ActiveChart.HasTitle = True
ActiveChart.ChartTitle.Text = Range("a47").Value
With ActiveChart.ChartTitle
.Font.Size = 15
.Border.ColorIndex = 5
End With
'軸ラベル
With ActiveChart.Axes(xlCategory, xlPrimary)
.HasTitle = True
.AxisTitle.Text = "日付"
.AxisTitle.Font.Size = 12
End With
With ActiveChart.Axes(xlValue, xlPrimary)
.HasTitle = True
.AxisTitle.Text = Range("b47").Value
.AxisTitle.Font.Size = 14
End With
End Sub
|
|