Excel VBA - Do While

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

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

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

    Get Certified in Excel VBA:bit.ly/41fWeVP
    Use coupon "RUclips12" to get ‘’FLAT 12%’’ OFF at Checkout.

  • @hirakshah5092
    @hirakshah5092 3 года назад +12

    Your method of teaching, presentation skill, screen clarity is awesome... God bless you and keep it up

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

    You have explained with complete clarity. 🙏🙏🙏

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

    Best tutorial for this so far!

  • @senthilkumar-zl2wb
    @senthilkumar-zl2wb 5 лет назад

    Hi bro your teaching skills is excellent.

  • @senthilkumar-zl2wb
    @senthilkumar-zl2wb 5 лет назад

    You have a great teaching skill.

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

    Thank you.
    Good example.

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

    Excellent. I don't know where my "Step into " button is but noticed F8 does the job.

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

    Excellent ❤️❤️

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

    amazing. thank you very much! God bless you.

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

    Where can I buy that 6 foot touchscreen monitor?

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

    Hello, what if we have to display the results in another new sheet and as from A2? What shall be the code plz

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

    Thanks for this tutorial! :)

  • @JV-xg5jk
    @JV-xg5jk 2 года назад

    i = 1 stands for what exactly? is it the row number?

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

    Dear sir! You explain all videos very clearily but i want to learn probgram that is use in VBA can you tell me which book or notes are helpfull

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

    hdid the code still work if we have a number after the last 12 ?

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

    I am having above 200 numbers each numbers having different text or names so based on the number I want to create names in separate columns in excel. I tried the VBA code but I couldn't. Please guide me

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

    WELL DEFINED

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

    Thank you so much

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

    Thanks.......................................

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

    Hi sir,
    Please tell me how I get this file which you have explain.
    Thanks in advance.

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

    Hie sir
    Your lecture was superb
    Can u please share VB macros in PDF file...?

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

    EXCEL-LENT!

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

    Good

  • @JV-xg5jk
    @JV-xg5jk 2 года назад

    so (i,2) = B1??

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

    ахренеть, этот индианец лучше моих преподов объяснил...

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

    good

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

    Variable at the beginning is equal to 1 and then i + 1. How is that possible?

    • @7anakatv37
      @7anakatv37 5 лет назад

      i refers to the number of row, that was 1 initially, then we move on (after applying the function the cell in that row number 1) to the next row that is i+1 (so if we were working on row number, we will move on to row number 1+1)
      so new i = whatever it was equal to in the last step + 1

  • @GaneshJadhav-mc3zx
    @GaneshJadhav-mc3zx 4 года назад

    Dear sir
    Instead off adding 10, how can we do using different value

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

    How could I get the VBA Code for this video? please paste link if feasible.

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

    thanks

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

    how to use excel formula in vba coding with using looping

  • @GaneshGanesh-rr3ti
    @GaneshGanesh-rr3ti 4 года назад

    Sir aap Hindi mein video banae to meri bahut help Hogi meri English bahut down hai

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

    sir aap k paas ek hi t-shirt h kya?

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

      t-shirt pe dhyaan mat do.

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

      ​@@satishverma1130
      Sir i want learn VBA please give me ur contact number

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

    in my code it is putting value 10 even after blank cell
    Any one can find out my mistake
    Public Sub DoWhile_Add()
    Dim i As Integer
    i = 1
    Do While Cells(i, 1).Value " "
    Cells(i, 2).Value = Cells(i, 1).Value + 10
    i = i + 1
    Loop
    End Sub

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

      Sorry I found my mistake I wrote " " instead of "".There was one extra space