Excel VBA Introduction Part 50.1 - Introduction to Charts in VBA

Поделиться
HTML-код
  • Опубликовано: 22 авг 2024

Комментарии • 41

  • @sim7717
    @sim7717 7 лет назад +12

    The most explicit tutorial on chart i have ever come across. Basically, all the tutorials you have made so far are exemplary. Keep going.

  • @alexsandoval7636
    @alexsandoval7636 10 месяцев назад +1

    Your videos are the best I've ever seen, I mean it.

    • @WiseOwlTutorials
      @WiseOwlTutorials  10 месяцев назад

      Thanks so much Alex, I appreciate the comments!

  • @davidgoldstraw9892
    @davidgoldstraw9892 6 лет назад +1

    These guys trained me in advanced VBA in Manchester, very good indeed. Still using VBA 6 years later

  • @kellyspoolhall761
    @kellyspoolhall761 Год назад +2

    Excellent video! I love the little tips and tricks along the way...so valuable to us noobs!

    • @WiseOwlTutorials
      @WiseOwlTutorials  Год назад

      Thanks! Glad you found it useful and thanks for watching!

  • @mustakimomar7400
    @mustakimomar7400 3 года назад +1

    I learned a lot from this video. thanks a lot!

    • @WiseOwlTutorials
      @WiseOwlTutorials  3 года назад

      You're very welcome! Happy to hear that you found it useful!

  • @petemenhennet9792
    @petemenhennet9792 5 лет назад

    Excellent video - just what I needed to help with my current project which has an embedded chart that has to be automatically updated each time the macro is run. Thanks for such a clear presentation!

  • @n.b.4155
    @n.b.4155 4 года назад

    As always, an incredibly useful tutorial. Exactly what I needed to know. Thanks!

  • @imtiazulhaque6328
    @imtiazulhaque6328 7 лет назад

    Absolutely phenomenal :) Your tutorials have helped me turn into a Macro lover from a complete VBA ignorant person. Kudos..I have run into a problem however while generating a chart with a secondary 'Y' axis, if you can help me with that it would be greatly appreciated. Again, can't thank you enough for all the amazing comprehensive video tutorials that you have put together which have absolutely made a difference in my life in a massive way.

  • @mikajulin
    @mikajulin 3 года назад +1

    Amazing tutorial! This saved my butt at work :D Thank you!

    • @WiseOwlTutorials
      @WiseOwlTutorials  3 года назад

      Happy to hear it helped, thanks for taking the time to leave a comment!

  • @abhijitmaitra2200
    @abhijitmaitra2200 7 лет назад +1

    Fantastic tutorial.........you are simply the best when it comes to VBA. I have a request, can you please make a video on pivot tables using vba ? It would be really helpful for a lot of people.

  • @Smokeyl337
    @Smokeyl337 7 лет назад

    All these tutorials have helped me a ton. Thanks!

  • @quickrows4064
    @quickrows4064 3 года назад +1

    As always, excellent tutorial. THANKS!

  • @deannorris1649
    @deannorris1649 7 лет назад

    You sir are a god amongst men!

  • @amandafernandesramospasson5862
    @amandafernandesramospasson5862 4 года назад

    amazing!! i love watching these tutorials.

  • @quickrows4064
    @quickrows4064 3 года назад +1

    It is not common to see a RUclips video with CERO negative votes. It talks about quality.

  • @DimitriBoyarski
    @DimitriBoyarski 3 года назад +2

    Awesome as always, imho nice extra topic to cover would have been generating charts from arrays and variables, though not sure if that's too much of a niche issue to bother with in a vid already over an hour long. Thanks man.

  • @juliadown5868
    @juliadown5868 3 года назад +1

    Thank you!!!

  • @deandevilliers2799
    @deandevilliers2799 6 лет назад

    GREAT video!

  • @nguyenthanhmy1702
    @nguyenthanhmy1702 5 лет назад

    Thanks for the vids, it’s extremely awesome!

  • @martinmulligan4327
    @martinmulligan4327 6 лет назад +1

    How do you create an XY scatter chart using data from an two dimensional array?

  • @hussnainahmedyaser8442
    @hussnainahmedyaser8442 7 лет назад

    Andrew,
    Thank you very much for very informative Tutorial.
    I have a situation where I would like to change the Series names (Chart Legend) to a value located in a cell in the spreadsheet, the location of the cell should be dynamic.
    For example if I create a Chart with Legends series names:
    Series 1
    Series 2 and
    Series 3
    How would I be able to change these names to values stored in a cell. The location of the cells can change (Dynamic location).
    I hope I was able to explain the problem, let me know if you need additional information.
    Thank you in advance for your time.
    Regards,
    Hussnain

  • @mikey38632
    @mikey38632 5 лет назад

    Can one address the data points in a series in a loop? So if a value meets a condition, the formatting for that point is different?

  • @viveksvkola
    @viveksvkola 5 лет назад

    Could you please provide the Source File for our practice.

  • @rinkusharma2002
    @rinkusharma2002 6 лет назад

    Charts.add is not working for me. I am working on MsOffice 2013 version. Please help

  • @vaidehicrs9898
    @vaidehicrs9898 6 лет назад +1

    Hi WiseOwl,
    I like all your videos on excel vba. They are really very helpful. I have a 36 x 36 matrix of data (numbers). I would like to get the sum of each column and plot the graph of (column Sum=Y axis) vs (Column number=X axis). Is there any way I can do this using for loop ? I can manually do it using the below code. But I am very bad at coding. It would be great if you could help me.
    Sub simpleGraph()
    Dim co As ChartObject
    Dim ct As Chart
    Dim scl As SeriesCollection
    Dim ser1 As Series
    Dim C1, C2, C3, C4, C5, C6, C7, C8, C9 As Range
    Dim C1Sum, C2Sum, C3Sum, C4Sum, C5Sum, C6Sum, C7Sum, C8Sum, C9Sum As Double
    'Dim xaxis() As Variant
    Set co = Worksheets("BPD Summary Statistics").ChartObjects.Add(Range("F16").Left, Range("F16").Top, 400, 200)
    Set ct = co.Chart
    With ct
    .HasLegend = True
    .HasTitle = True
    .ChartTitle.Text = "Seat Cushion:Sum of Columns within Regions"
    Set scl = .SeriesCollection
    Set ser1 = scl.NewSeries
    With ser1
    Set C1 = Sheets("Final BPD").Range("A21:A56")
    Set C2 = Sheets("Final BPD").Range("B21:B56")
    Set C3 = Sheets("Final BPD").Range("C21:C56")
    Set C4 = Sheets("Final BPD").Range("D21:D56")
    Set C5 = Sheets("Final BPD").Range("E21:E56")
    Set C6 = Sheets("Final BPD").Range("F21:F56")
    Set C7 = Sheets("Final BPD").Range("G21:G56")
    Set C8 = Sheets("Final BPD").Range("H21:H56")
    Set C9 = Sheets("Final BPD").Range("I21:I56")
    C1Sum = Application.WorksheetFunction.Sum(C1)
    C2Sum = Application.WorksheetFunction.Sum(C2)
    C3Sum = Application.WorksheetFunction.Sum(C3)
    C4Sum = Application.WorksheetFunction.Sum(C4)
    C5Sum = Application.WorksheetFunction.Sum(C5)
    C6Sum = Application.WorksheetFunction.Sum(C6)
    C7Sum = Application.WorksheetFunction.Sum(C7)
    C8Sum = Application.WorksheetFunction.Sum(C8)
    C9Sum = Application.WorksheetFunction.Sum(C9)
    .XValues = Array(1, 2, 3, 4, 5, 6, 7, 8, 9)
    .Values = Array(C1Sum, C2Sum, C3Sum, C4Sum, C5Sum, C6Sum, C7Sum, C8Sum, C9Sum)
    .ChartType = xlXYScatterLines
    End With
    End With
    End Sub
    Thanks & Regards,
    Vaidehi

    • @Tycket
      @Tycket 5 лет назад +1

      /r/excel would be a perfect place to help you with your code.

  • @TheSardOz
    @TheSardOz 3 года назад

    Andrew, do you have video with candle stick chart?

    • @WiseOwlTutorials
      @WiseOwlTutorials  3 года назад +1

      Hi there, sorry no we don't have any videos on candle stick charts (I just had to Google what they are!)

    • @TheSardOz
      @TheSardOz 3 года назад +1

      @@WiseOwlTutorials 😂😂😂... Thank you!!

  • @user-hq9zt5ve7k
    @user-hq9zt5ve7k 7 лет назад +1

    ███████ Сool tutorials ... Thanks ███████

  • @mrpopsful
    @mrpopsful 5 лет назад +1

    Fully agreed, 50 shades of grey is a terrible movie.