Excel VBA質問箱 IV

当質問箱は、有志のボランティア精神のおかげで成り立っています。
問題が解決したら、必ずお礼をしましょうね。
本サイトの基本方針をまとめました。こちら をご一読ください。

投稿種別の選択が必要です。ご注意ください。
迷惑投稿防止のため、URLの入力を制限しています。ご了承ください。


54053 / 76732 ←次へ | 前へ→

【27483】グラフの挿入時のエラー回避について
質問  andy  - 05/8/10(水) 11:38 -

引用なし
パスワード
   お願いします。

下記に記載する表よりデータを取得しグラフ作成を試みています。
表は2点(データ1、データ2)があります。
表に記載されたデータを「グラフ作成」ボタンを押すことでグラフ表示をします。

ここで問題ですが
1、グラフ作成ボタンを押すと削除しない限りグラフが増えていく
 回避方法として先ず既存のグラフを一旦削除して新たに作成するのが良いと
 思いますが方法が分かりません。

2、「グラフ作成1」「グラフ作成2」2つのボタンがありますが先に
 グラフ作成2を実行するとエラーになる。
 これの回避方法が分かりません。

何方かご指導をお願いいたします。


 A B C D E F G H I J K L
1 
2       グラフ表示領域
3       






・名称:データ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

1 hits

【27483】グラフの挿入時のエラー回避について andy 05/8/10(水) 11:38 質問
【27485】Re:グラフの挿入時のエラー回避について Kein 05/8/10(水) 12:28 回答
【27521】Re:グラフの挿入時のエラー回避について andy 05/8/10(水) 19:41 質問
【27533】Re:グラフの挿入時のエラー回避について Kein 05/8/10(水) 22:35 回答
【27551】Re:グラフの挿入時のエラー回避について andy 05/8/11(木) 15:38 質問
【27555】Re:グラフの挿入時のエラー回避について Kein 05/8/11(木) 16:23 回答
【27652】Re:グラフの挿入時のエラー回避について andy 05/8/15(月) 1:36 質問
【27695】Re:グラフの挿入時のエラー回避について Kein 05/8/16(火) 14:46 回答

54053 / 76732 ←次へ | 前へ→
ページ:  ┃  記事番号:
2610219
(SS)C-BOARD v3.8 is Free