Results 1 to 1 of 1

creating 2 charts per row for each compound

Threaded View

viji creating 2 charts per row for... 03-30-2011, 11:26 AM
  1. #1
    Registered User
    Join Date
    04-19-2010
    Location
    US
    MS-Off Ver
    Excel 2007
    Posts
    2

    creating 2 charts per row for each compound

    Hi group,
    I have writen the code which works partially of my objective.
    I want the 2 graphs for each row next to the table on the right with one compound below the other. I have attached the example file as well.
    This code creates one graph only with the required objective except for the location.
    Code:
    Sub CreateChart()
    Dim numRows As Long
    Dim x
    numRows = ActiveSheet.Cells(Rows.Count, "A").End(xlUp).Row
    For x = 3 To numRows
    ActiveSheet.Shapes.AddChart.Select
    With ActiveChart
    Do While .SeriesCollection.Count > 1
    .SeriesCollection(1).Delete
    Loop
    .SetSourceData Source:=Range("'Sheet1'!$B$" & x & ":$G$" & x)
    .SeriesCollection(1).Name = "Sample 1"
    .PlotBy = xlRows
    .ChartType = xlXYScatter
    .HasTitle = True
    .ChartTitle.Text = "=Sheet1!R" & [x] & "C1"
    .Axes(xlCategory, xlPrimary).HasTitle = True
    .Axes(xlCategory, xlPrimary).AxisTitle.Characters.Text = "Timepoints"
    .Axes(xlValue, xlPrimary).HasTitle = True
    .Axes(xlValue, xlPrimary).AxisTitle.Characters.Text = "Plus values"
    .SeriesCollection.NewSeries
    .SeriesCollection(2).Values = "='Sheet1'!$H$" & x & ":$M$" & x
    .SeriesCollection(2).Name = "Sample 2"
    .SeriesCollection.NewSeries
    .SeriesCollection(3).Values = "='Sheet1'!$N$" & x & ":$S$" & x
    .SeriesCollection(3).Name = "Sample 3"

    End With
    Next x
    End Sub

    what I am expecting to get
    1)I want two charts for each row now by changing the column names I am executing this code twice.
    2)I am getting the graphs at the same location exactly one on the other. Is there a way to place the graphs one below the other and the second graph to the right of the graph for the first row.I want these graphs to be next to the table on the right.
    3)If possible I want the 2 graphs for each row to be of the same scale.

    Waiting for a reply,
    Thanks,
    viji
    Attached Files Attached Files

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1