Mastering VBA Part 22 | Dynamic Array | Practice Question |In VBA | In Hindi

แชร์
ฝัง
  • เผยแพร่เมื่อ 18 พ.ย. 2024

ความคิดเห็น • 19

  • @Hacker-t3m
    @Hacker-t3m 3 หลายเดือนก่อน +19

    Great video! , I like your method of explaining questions could give more questions of practice rather than homework

    • @ProgramMaster1710
      @ProgramMaster1710  3 หลายเดือนก่อน +13

      Thank you for your feedback! I'm glad you enjoyed the explanation. I appreciate your suggestion. Here are some additional practice questions related to dynamic arrays in VBA programming:
      1.Write a VBA program to calculate the sum of the diagonal elements in a dynamic 2D array.
      2.Write a VBA program to count the number of unique values in a dynamic array.
      3.Write a VBA program to randomly shuffle the elements in a dynamic array.
      4. Write a VBA program to find the second largest number in a dynamic array.
      5.Write a VBA program that inserts a new value at a specific position in a dynamic array of integers.

    • @Hacker-t3m
      @Hacker-t3m 3 หลายเดือนก่อน +8

      @@ProgramMaster1710 thankyou for this questions

    • @ProgramMaster1710
      @ProgramMaster1710  3 หลายเดือนก่อน +5

      😊Most Welcome

  • @jitendramahapatra1239
    @jitendramahapatra1239 2 หลายเดือนก่อน +3

    Super se upper guru jee ❤

    • @ProgramMaster1710
      @ProgramMaster1710  2 หลายเดือนก่อน +1

      Sukriya aapka jii....
      Jada se Jada share kariye video ko..

  • @rajenderprajapati7784
    @rajenderprajapati7784 3 หลายเดือนก่อน +14

    Can you share the Power BI tutorial series??

    • @ProgramMaster1710
      @ProgramMaster1710  3 หลายเดือนก่อน +12

      Thank you for your interest! In the upcoming days, I’ll be uploading the Power BI tutorial series, so stay tuned. It’s coming as soon as possible!

  • @RareGem787
    @RareGem787 3 หลายเดือนก่อน +15

    This Dynamic Array concept seems powerful! Can we use it to manage data from different sheets dynamically?

    • @ProgramMaster1710
      @ProgramMaster1710  3 หลายเดือนก่อน +12

      Absolutely! Dynamic Arrays in VBA are perfect for that. You can allocate or resize them based on data from multiple sheets, making them super flexible for complex data handling. Give it a try!

  • @AmanKumarPaswan-ks3sg
    @AmanKumarPaswan-ks3sg 3 หลายเดือนก่อน +13

    Great explanation, but I'm still a bit confused about how to resize a Dynamic Array. Could you clarify that part?

    • @ProgramMaster1710
      @ProgramMaster1710  3 หลายเดือนก่อน +12

      I'm glad you found the video helpful! To resize a Dynamic Array, you can use the ReDim statement. If you want to preserve the existing data, use ReDim Preserve. This allows you to adjust the array size without losing the data. Keep practicing, and it'll click!

  • @youngbloodrecords4769
    @youngbloodrecords4769 3 หลายเดือนก่อน +13

    Can Dynamic arrays be used with user defined functions in VBA ?

    • @ProgramMaster1710
      @ProgramMaster1710  3 หลายเดือนก่อน +13

      Yes, they can! Dynamic Arrays can be incredibly powerful when used within user-defined functions, especially for tasks that require flexible data handling. It's a bit advanced, but once you get the hang of it, you'll see how versatile they are!

    • @youngbloodrecords4769
      @youngbloodrecords4769 3 หลายเดือนก่อน +13

      @@ProgramMaster1710 ok Thank you so much for you explanation..

    • @ProgramMaster1710
      @ProgramMaster1710  3 หลายเดือนก่อน +13

      My pleasure. Keep watching .

  • @Sheetal-y2j
    @Sheetal-y2j 3 หลายเดือนก่อน +13

    Is there a limit to how large a Dynamic array can be in VBA ?

    • @ProgramMaster1710
      @ProgramMaster1710  3 หลายเดือนก่อน +12

      Great question! The size limit of a Dynamic Array in VBA is generally constrained by your system's memory. As long as your computer can handle it, you can work with pretty large arrays. Just make sure to manage memory efficiently

    • @Sheetal-y2j
      @Sheetal-y2j 3 หลายเดือนก่อน +12

      @ProgramMaster338 Okay, thank you so much ...