Consulting

Results 1 to 7 of 7

Thread: Is it possible to chart hidden figures (data)

  1. #1
    Moderator VBAX Wizard Aussiebear's Avatar
    Joined
    Dec 2005
    Location
    Queensland
    Posts
    5,091
    Location

    Is it possible to chart hidden figures (data)

    Just a quick question. Is it possible to chart hidden data?
    Remember To Do the Following....
    Use [Code].... [/Code] tags when posting code to the thread.
    Mark your thread as Solved if satisfied by using the Thread Tools options.
    If posting the same issue to another forum please show the link

  2. #2
    So, once you hide the columns the chart empties. You can though, access the values in the hidden columns using VBA. So, you can fill a chart via VBA with the hidden columns data.

  3. #3
    Moderator VBAX Wizard Aussiebear's Avatar
    Joined
    Dec 2005
    Location
    Queensland
    Posts
    5,091
    Location
    Okay.... I'm going to have to experiment with this a bit
    Remember To Do the Following....
    Use [Code].... [/Code] tags when posting code to the thread.
    Mark your thread as Solved if satisfied by using the Thread Tools options.
    If posting the same issue to another forum please show the link

  4. #4
    Put the hidden range data in an array, then use that to fill the chart.

    excel - Create Chart from Array data and not range - Stack Overflow

    edit: super simple of course
        Dim hiddenCol1 As Range
        Dim hiddenCol2 As Range
        Dim rangeChart As Chart
        Dim chartSeries As Series
        Dim chartValues() As Integer
        Dim chartXValues() As String
            
        Set hiddenCol1 = ActiveSheet.Range("B1:B5")
        Set hiddenCol2 = ActiveSheet.Range("C1:C5")
        
        Set rangeChart = ActiveSheet.ChartObjects("Chart 4").Chart
        Set chartSeries = rangeChart.SeriesCollection.NewSeries
        
        rangeChart.ChartType = xlLine
        ReDim chartValues(hiddenCol1.Count - 1)
        ReDim chartXValues(hiddenCol1.Count - 1)
        
        For rw = 2 To hiddenCol1.Count
            chartXValues(rw - 1) = hiddenCol1.Cells(rw, 1)
            chartValues(rw - 1) = hiddenCol2.Cells(rw, 1)
        Next rw
        
        chartSeries.Values = chartValues
        chartSeries.XValues = chartXValues
    Attached Images Attached Images
    Last edited by jdelano; 04-28-2024 at 08:15 AM.

  5. #5
    VBAX Expert Dave's Avatar
    Joined
    Mar 2005
    Posts
    836
    Location
    Hi Aussiebear. This link has the manual way to show hidden cells and some interesting VBA that you might want to trial....
    How to show hidden data in Excel chart - Excel Off The Grid
    Sub ToggleChartDisplayHiddenRows()
    
    
    'Declare and assign variable
    Dim cht As Chart
    Set cht = ActiveChart
    
    
    'Ignore errors if no chart active
    On Error Resume Next
    
    
    'Toggle hidden data visibility
    cht.PlotVisibleOnly = Not cht.PlotVisibleOnly
    
    
    On Error GoTo 0
    
    
    End Sub
    HTH. Dave

  6. #6
    VBAX Sage
    Joined
    Apr 2007
    Location
    United States
    Posts
    8,738
    Location
    Quote Originally Posted by Aussiebear View Post
    Just a quick question. Is it possible to chart hidden data?
    Yes. Col B is hidden


    Capture.JPG

    Capture2.JPG

    Capture3.JPG
    Attached Files Attached Files
    ---------------------------------------------------------------------------------------------------------------------

    Paul


    Remember: Tell us WHAT you want to do, not HOW you think you want to do it

    1. Use [CODE] ....[/CODE ] Tags for readability
    [CODE]PasteYourCodeHere[/CODE ] -- (or paste your code, select it, click [#] button)
    2. Upload an example
    Go Advanced / Attachments - Manage Attachments / Add Files / Select Files / Select the file(s) / Upload Files / Done
    3. Mark the thread as [Solved] when you have an answer
    Thread Tools (on the top right corner, above the first message)
    4. Read the Forum FAQ, especially the part about cross-posting in other forums
    http://www.vbaexpress.com/forum/faq...._new_faq_item3

  7. #7
    Moderator VBAX Wizard Aussiebear's Avatar
    Joined
    Dec 2005
    Location
    Queensland
    Posts
    5,091
    Location
    Thank you to everyone who has helped here.
    Remember To Do the Following....
    Use [Code].... [/Code] tags when posting code to the thread.
    Mark your thread as Solved if satisfied by using the Thread Tools options.
    If posting the same issue to another forum please show the link

Tags for this Thread

Posting Permissions

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