SUM of two or more Textboxes and Tricks to Automate This - Excel VBA

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

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

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

    This is what a tutorial is all really about, Explaining the basic, Doing an Example and executing it on different levels. This is what a really Teaching should be on coding not a robot machine who memorize syntax without understanding anything.

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

    Dude this helped me soo much for my VBA form for my unit assignment, thanks man..

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

      So Glad I could help! Thanks for the kind words, Thomas!

  • @ExcelVbaIsFun
    @ExcelVbaIsFun  11 лет назад +1

    Merry Christmas everyone. I hope God blesses you richly this upcoming year. Remember, you ARE a success!! Believe it, be it! Blessings my friends!! Dan

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

    thank you very much, you let it look soo easy

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

    This was JUST what I needed. Thank you!!! Made my week!

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

    Really helpful. Thanks man!

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

    Thank you, this tutorial really help me to do some cool stuffs. Greatings from CHILE.

  • @MYJETGLO
    @MYJETGLO 11 лет назад +1

    Dan....brilliant video..loved it!!!

    • @ExcelVbaIsFun
      @ExcelVbaIsFun  11 лет назад

      Awesome! Thanks MYJETGLO!! I appreciate that! Dan

  • @carlo9567
    @carlo9567 2 года назад +1

    Great Job

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

    Thanks that's exactly what I'm looking for! But how should I try to put it into my Userform instead of Sheet 1? Which Object and Procedure in Userform?

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

    Sir thank you very much for excellent and very interesting lesson

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

    wow!! this video is great & helpful! thanks

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

    if we want system to calculate the text boxes and divide it total value with the number of text boxes are available, how we can do that? please help....!!!!!

  • @OmarFaruk-yr4tp
    @OmarFaruk-yr4tp Год назад

    Jajakallahi khairan

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

    Hi Dan, Greatings from Belgium. I am trying to make a foodcost application with excel for my restaurant. I figured out the most, but i am stuck on the calculations. Having trouble with decimals. Here in Belgium we write 1.200 instead of 1.200,00. My formule won't pick up numbers after the decimals, or won't even insert a decimal. i tried val(me.textbox) or format(textbox). i tried this tutorial. Really i can not figure it out. Please can i send you the excel file so you can have a look at it. If you could just help me 1 step. Thanks in advance. if you agree that i can send you the excel file, where do i send it. please please.

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

    Very nice sir

  • @MrTaylorbrown100
    @MrTaylorbrown100 10 лет назад

    Hey there i know this video is a little old but I just found it and wow its helped me so much. I am having to build a program that does various things for a final. I am having a problem though. I have a userform with two textboxes. when the user clicks add it adds the two together and displays in a label. I used the IIF statement with a msgbox ("please enter a number into the first box") if the txtbox comes back "". here is my code. could you help me out please? the msgbox displays, but all the time whether the txtbox is numeric or not.
    lblCalcAnswer = "Your numbers added together are " & (IIf(txtCalc1 = "", MsgBox("Please enter a number into the first box"), _
    txtCalc1)+ 0) + (IIf(txtCalc2 = "", MsgBox("Please enter a number into the second box"), txtCalc2) + 0)

  • @willfate4980
    @willfate4980 11 лет назад

    Boss, wanna ask a question? Is it possible to add the two labels value together? I've tried it but it wont auto calculate..only can calculated it when i ran it in the dev tab..

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

    Hey this is fantastic I was able to create a where user will be able to check data entry error soon they finished entering the last digit fab
    I wonder you could solve this problem for me . here we are ... I created a data entry form and linked the database below so that user can select a particular row and then edit or delete so far so good The issue is I want to make this list to be in descending order and as and when a new row of data is entered this appear right at the top so that the user know what is the last piece of data entered

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

    Can you help me with the following please:
    I created a Userform with 14 Textboxes.
    T1...T12 for data entry(numeric value only).
    T13 : Sum of T1...T12 (It’s ok for that one.)
    How can I get the Average automatically in T14, counting non blank textboxes?

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

      Please see new vid ruclips.net/video/XwrKZ4TMO-w/видео.html

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

    This is a great video.. thanks for sharing

  • @nailealarge7527
    @nailealarge7527 10 лет назад

    this video really helped! thanks soo much!

    • @ExcelVbaIsFun
      @ExcelVbaIsFun  10 лет назад

      Awesome! Glad that helps, Nailea! Don't forget to sign up for my FREE ebook. www.excelvbaisfun.com/free-ebook.html

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

    It works!

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

    this only need, thanks a lot

  • @MarqMarquette
    @MarqMarquette 8 лет назад

    how would I find this workbook

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

    Thanks buddy..

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

    Thanks dear

  • @collinbryant2515
    @collinbryant2515 10 лет назад

    What if you want to add the values of 10 or more textboxes?

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

    Very nice...

  • @hophonglan
    @hophonglan 8 лет назад

    thank you so much

  • @OmarFaruk-yr4tp
    @OmarFaruk-yr4tp Год назад

    Thnks

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

    Please provide the code sir

  • @tomaskochan1047
    @tomaskochan1047 9 лет назад +1

    Hi! Maybe off this topic, but how could you make it jump from one textbox to another by hitting TAB key? Anyways, nice video !

    • @brianrumaguera7133
      @brianrumaguera7133 8 лет назад

      +Tomáš Kochan
      The same question here. But on me, how can it be done to make the total updates as the textboxes were updated too. Let us say there are 10 textboxes to add. thank you . I am your fan

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

    How to get answer with no command button.

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

    u r superhero

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

    How to 50 textbox value sum plz solved

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

    the fucking best video i have ever seen

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

      Thanks so much! Lots more here on the channel. Lots of premium stuff at excelvbaisfun.com
      Thanks!!

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

    How to put value in both textbox without helping mouse

  • @carlo9567
    @carlo9567 2 года назад +1

    Hi there. Can someone help me please?

  • @willfate4980
    @willfate4980 11 лет назад

    Opps..sorry, actually ive made two using the same code...meaning i have two labels