+ Reply to Thread
Results 1 to 5 of 5

Offset/Match? Chart by selected start/end date and col header

Hybrid View

  1. #1
    Forum Contributor Steve N.'s Avatar
    Join Date
    12-22-2011
    Location
    USA
    MS-Off Ver
    Excel 2007, 2010
    Posts
    298

    Offset/Match? Chart by selected start/end date and col header

    Hello,

    I'm trying to chart a range of data based on 3 variables. First 2 are variable (selected) start and end months and the 3rd is based on the selected column header.

    I think I need some kind of offset formula but I'm lost...

    Appreciate any help with this.

    Thanks, Steve

  2. #2
    Forum Guru
    Join Date
    03-02-2006
    Location
    Los Angeles, Ca
    MS-Off Ver
    WinXP/MSO2007;Win10/MSO2016
    Posts
    12,939

    Re: Offset/Match? Chart by selected start/end date and col header

    here's a macro sol'n:
    Option Explicit
    
    Private Sub UpdateChart_Click()
        Dim AbsissaRange    As String, _
            OrdinateRange   As String, _
            OrdinateColumn  As Long, _
            StartMonthRow   As Long, _
            EndMonthRow     As Long, _
            DateSearchRange As String
            
        DateSearchRange = Range("a1").CurrentRegion.Resize(, 1).Address(0, 0)
        
        StartMonthRow = WorksheetFunction.Match(Range("K8"), Range(DateSearchRange), 0)
        EndMonthRow = WorksheetFunction.Match(Range("K10"), Range(DateSearchRange), 0)
        AbsissaRange = Range(Cells(StartMonthRow, 1), Cells(EndMonthRow, 1)).Address(0, 0)
        
        OrdinateColumn = WorksheetFunction.Match(Range("N1"), Range("A1:H1"), 0)
        OrdinateRange = Range(Cells(StartMonthRow, OrdinateColumn), Cells(EndMonthRow, OrdinateColumn)).Address(0, 0)
        
        
        ChartObjects("Chart 3").Activate
        ActiveChart.SeriesCollection(1).XValues = _
            "='Index-Match w-Variable Date'!" & AbsissaRange
            
        ActiveChart.SeriesCollection(1).Name = "='Index-Match w-Variable Date'!" & Cells(1, OrdinateColumn).Address(0, 0)
        ActiveChart.SeriesCollection(1).Values = _
            "='Index-Match w-Variable Date'!" & OrdinateRange
        Range("A1").Select
    
    End Sub
    Last edited by protonLeah; 07-11-2013 at 11:58 PM.
    Ben Van Johnson

  3. #3
    Forum Contributor Steve N.'s Avatar
    Join Date
    12-22-2011
    Location
    USA
    MS-Off Ver
    Excel 2007, 2010
    Posts
    298

    Re: Offset/Match? Chart by selected start/end date and col header

    Ben,

    Thanks for the solution - however, I'm not yet comfortable using macros for this kind of thing. I'm afraid I won't be able to fix or maintain the s/s when I break it - and I will break it, eventually. Any formula based solution?

    Steve

  4. #4
    Forum Expert
    Join Date
    09-20-2011
    Location
    England
    MS-Off Ver
    Excel 2010
    Posts
    2,278

    Re: Offset/Match? Chart by selected start/end date and col header

    Hello Steve
    One way using formulas is to create a couple of dynamic named ranges and apply them to your chart. See attached.

    Hope this helps.
    DBY

  5. #5
    Forum Contributor Steve N.'s Avatar
    Join Date
    12-22-2011
    Location
    USA
    MS-Off Ver
    Excel 2007, 2010
    Posts
    298

    Re: Offset/Match? Chart by selected start/end date and col header

    Exactly what I needed DBY! Thank you.

+ Reply to Thread

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