Excel VBA質問箱 IV

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

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


54015 / 76732 ←次へ | 前へ→

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

引用なし
パスワード
   Kein さん ありがとうございます。

若干、手は加えたのですがどうしても

Seriesクラスのvalueプロパティを設定できません。とエラーが出ます。
.Values = .Name & "!$A$" & i & ":$K$" & i

何が原因でしょうか??

環境はwinXP,エクセル2003になります。


Sub MyChart1()
  Dim Ch As ChartObject, MyCh As ChartObject
  Dim Lp As Single, Wp As Single, Hp As Single
 
  With ActiveSheet
   If .ChartObjects.Count > 0 Then
     For Each Ch In .ChartObjects
      If Ch.TopLeftCell.Address = "$A$1" Then
        Ch.Delete
      End If
     Next
   End If
   With .Range("A1:L9")
     Lp = .Left + 11
     Wp = .Width - 10
     Hp = .Height - 10
   End With
   Set MyCh = .ChartObjects.Add(Lp, 0, Wp, Hp)
   MyCh.Chart.ChartType = xlLine
   For i = 49 To 53
     If Not IsEmpty(.Cells(i, 2).Value) Then
      With MyCh.Chart.SeriesCollection.NewSeries
        .XValues = .Name & "!$A$48:$K$48"
        .Values = .Name & "!$A$" & i & ":$K$" & i
      
      End With
     End If
   Next i
   MyCh.Chart.HasTitle = True
   MyCh.Chart.ChartTitle.Text = .Range("A47").Value
  End With
  With MyCh.Chart.ChartTitle
   .Font.Size = 15
   .Border.ColorIndex = 5
  End With
  With MyCh.Axes(xlCategory)
   .HasTitle = True
   .AxisTitle.Text = "日付"
   .AxisTitle.Font.Size = 12
  End With
  With MyCh.Axes(xlValue)
   .HasTitle = True
   .AxisTitle.Text = "データ2"
   .AxisTitle.Font.Size = 14
  End With
  Set MyCh = Nothing
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 回答

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