How to make multiple charts in excel using vba

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

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

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

    Hope you learnt something new and interesting. Thanks for watching and please Like, Comment and Subscribe.

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

    I am so glad I found your video!!! Thank you for making it and posting! It’s so refreshing to see a video working with data that resembles mine, you saved me months of trial and error!

  • @yem.t.3930
    @yem.t.3930 4 года назад

    Thank you sooo much Madam! Very clear, easily understandable, clear video and audio !
    would be happy for more tutorials !
    Cheers !

  • @PiroMat15
    @PiroMat15 4 года назад +1

    Right now, I have around 1000 charts to do, and I must say that I love You :)
    That's piece of code what I was looking for, exactly. Thank You so much.

  • @SGH-rt6ci
    @SGH-rt6ci 3 года назад

    Dear Ms Karina, clear brilliant explanation ! btw your pleasant voice makes this tutorial easy to graps

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

    Thanks for your amazing work. This was a terrific example of Macros.

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

    Great demonstration. Nice, clear description. Thanks !

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

    Thank you so much Karina, Lord Jesus bless you!

  • @discozhang9353
    @discozhang9353 4 года назад +2

    I tried exactly same codes, but my charts got all the series instead of only one serie for each graph, is this happen to you before? Thanks a lot

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

      Yes, happened to me. make sure your cursor is on a blank cell.

    • @nhlanhlamakondo5474
      @nhlanhlamakondo5474 2 года назад

      @@yaseminatalay1563 thank you , i was struglling with same problen

  • @sandycarr-q7b
    @sandycarr-q7b Год назад

    HELLO, how can I plot the columns and align the plots next to each other instead of stack on top of each other?

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

    May I please know how to add trendline with equation in VBA as well? thanks a lot

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

    Thank you for your video Karina, I have a couple of questions like is it the same for pie charts too (xlpie) and how to navigate to the respective field after selecting a slice of a pie chart
    it would be really helpful for me.
    Thank you

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

    Thanks, very helpful! What if I have different X axis? Could you suggest?

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

    This is the best. Now lets test in and see if it works (here as i have to make 100 similar graphs, each with the same date but 4 series.
    I was also trying named ranges. Can you add these in?

  • @jonnelderamas4778
    @jonnelderamas4778 24 дня назад

    I need help with making around 1000 bar graphs at once. Please help me

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

    not working, it gets all columns in only one plot
    How can in the same code insert a selection of several columns with the same time base in one graph.

  • @frevanneste7595
    @frevanneste7595 2 года назад

    Hi, can I Add 2 types of Y values into 1 chart?

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

    Hy Thanks for the video.
    Can you also make another one where I can have single chart with 3 values in same chart using VBA. With different colors

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

    I wanted to create one chart with multiple Y variable. So how to create it??

  • @jonnelderamas4778
    @jonnelderamas4778 24 дня назад

    I need to swap the data between the column and rows

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

    How can we add the charts on a separate worksheet and prevent them stacking on top of each other?

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

      You probably want something like this: ruclips.net/video/AouNX275uyM/видео.html

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

      @@karinaadcock Thank you - this is very helpful. I have one more question; what if there are more series for each chart. For example, what if the series repeat starting from row 21 with same date and same column titles but different values in each cell. I have a model output that repeats for 100 series and would like to plot them all. Thanks.

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

    Thanks, this is very helpful.

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

    Hi thank you very much for this information and detailed explanation. Can you help me to send all created graph to another sheet? I'm so sorry for asking too much. I hope you can help me. Thank you very much

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

    not working, it gets all columns in only one plot

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

    thx a lot, this is so useful

  • @ShyanakaDananjaya
    @ShyanakaDananjaya 4 года назад +2

    Solution for all the data in one plot: You can set the source data for the interested column by adding .SetSourceData Source:=ActiveSheet.Range("B2:B18") before .ChartType line which would get rid of all the data being plotted in the same chart.