+ Reply to Thread
Results 1 to 3 of 3

Multi-Row Sequential Data

Hybrid View

jboyle923 Multi-Row Sequential Data 06-22-2014, 01:06 AM
rcm Re: Multi-Row Sequential Data 06-22-2014, 04:11 AM
jboyle923 Re: Multi-Row Sequential Data 06-22-2014, 03:48 PM
  1. #1
    Forum Expert
    Join Date
    11-28-2012
    Location
    Guatemala
    MS-Off Ver
    Excel 2010
    Posts
    2,394

    Re: Multi-Row Sequential Data

    This is the only way I know how to get the correct type of graph... it adjust itself to the data. I chose to do it in a copy sheet named WS

    Sheets("WS").Select
    rmax = Sheets("WS").Range("a" & Rows.Count).End(xlUp).Row
    k = 14
    Sheets("WS").Cells(11, 2) = Sheets("WS").Cells(13, 1)
    
    For r = 14 To rmax
    Sheets("ws").Cells(11, k) = Sheets("ws").Cells(r, 1)
    For m = 2 To 13
    Sheets("ws").Cells(13, k) = Sheets("ws").Cells(r, m)
    Sheets("ws").Cells(12, k) = Sheets("ws").Cells(12, m)
    k = k + 1
    Next m
    
    Next r
    
       
    Set c = Worksheets("ws").Range("12:12").Find("", LookIn:=xlValues)
    cl = c.Address
    
        Rng = "$B$13:" & Mid(cl, 1, Len(cl) - 2) & "13"
      
        Sheets("Gráfico2").Select
    
        ActiveChart.PlotArea.Select
        ActiveChart.SeriesCollection(1).Values = "='ws'!" & Rng
        
        Rng = "$B$11:" & Mid(cl, 1, Len(cl) - 2) & "11"
        
        ActiveChart.SeriesCollection(1).XValues = "='ws'!" & Rng
        ActiveChart.SeriesCollection(1).Name = "=""unemployment rate"""
       
    End Sub

  2. #2
    Registered User
    Join Date
    06-22-2014
    Location
    Denver, CO
    MS-Off Ver
    2007
    Posts
    2

    Re: Multi-Row Sequential Data

    Quote Originally Posted by rcm View Post
    This is the only way I know how to get the correct type of graph... it adjust itself to the data. I chose to do it in a copy sheet named WS
    I've just found an Excel add-in, created by the St. Louis Federal Reserve Bank, which resolves my specific issue. It may be found here if anyone is interested. Thanks for your help, rcm.

+ Reply to Thread

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. Replies: 3
    Last Post: 01-30-2014, 05:31 AM
  2. Replies: 9
    Last Post: 01-17-2013, 12:07 PM
  3. Replies: 19
    Last Post: 10-05-2012, 01:03 PM
  4. Plotting sequential data against sequential dates
    By Morph71 in forum Excel Charting & Pivots
    Replies: 2
    Last Post: 09-04-2009, 05:33 PM
  5. Replies: 3
    Last Post: 06-07-2005, 09:05 AM

Tags for this Thread

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