How to Create a Calculator in Excel 2013 using VBA

Create a Calculator in Excel 2013 using VBA
To support more videos from DJ Oamen, visit POamen Paypal
www.paypal.me/POamen
To Become a Channel member click on the link below to JOIN:
/ @djoamen

Пікірлер: 47

  • @viswanadhambagati5556
    @viswanadhambagati55564 жыл бұрын

    Easily I could do this by watching this video . Thank you for sharing your knowledge

  • @DJOamen

    @DJOamen

    4 жыл бұрын

    Most welcome 😊

  • @jameskalka294
    @jameskalka2944 жыл бұрын

    Great video! Thanks!

  • @DJOamen

    @DJOamen

    4 жыл бұрын

    THANK YOU 👍

  • @abdeljelilmohamedabdellahi1501
    @abdeljelilmohamedabdellahi15012 жыл бұрын

    Thank you very much for sharing your knowledge ! More and more...please !

  • @DJOamen

    @DJOamen

    2 жыл бұрын

    More to come!

  • @user-gt6zt3hj9s
    @user-gt6zt3hj9s3 жыл бұрын

    Thank you! Good job!

  • @DJOamen

    @DJOamen

    3 жыл бұрын

    Our pleasure!

  • @oraclepro.5005
    @oraclepro.50055 жыл бұрын

    Excellent work

  • @DJOamen

    @DJOamen

    5 жыл бұрын

    Thank You

  • @keshavachandu99
    @keshavachandu994 жыл бұрын

    Thank you so much.

  • @DJOamen

    @DJOamen

    4 жыл бұрын

    Thank you

  • @BARTLANTV
    @BARTLANTV2 жыл бұрын

    Thanks a lot for this video...

  • @DJOamen

    @DJOamen

    2 жыл бұрын

    Most welcome

  • @alvinchristiandegala2428
    @alvinchristiandegala24282 жыл бұрын

    Thankyou so much for sharing your knowlegde ☺️

  • @DJOamen

    @DJOamen

    2 жыл бұрын

    Glad it was helpful!

  • @muhammedismail9615
    @muhammedismail96152 жыл бұрын

    . Thank you for sharing your knowled

  • @DJOamen

    @DJOamen

    2 жыл бұрын

    My pleasure

  • @manishapandey1571
    @manishapandey15712 жыл бұрын

    Thank u so much sir

  • @DJOamen

    @DJOamen

    2 жыл бұрын

    Most welcome

  • @toxicofbacon7338
    @toxicofbacon73384 жыл бұрын

    great

  • @DJOamen

    @DJOamen

    4 жыл бұрын

    Thanks

  • @bryonlim3183
    @bryonlim3183 Жыл бұрын

    Thanks!

  • @DJOamen

    @DJOamen

    Жыл бұрын

    You're welcome

  • @DJOamen

    @DJOamen

    9 ай бұрын

    Thank you for your support

  • @DJOamen

    @DJOamen

    3 ай бұрын

    Thank you for your support

  • @liezldeguzman3476
    @liezldeguzman34768 ай бұрын

    Sir its so helpful How to save after creating the calculator? I hope you can reply me soon😢

  • @DJOamen

    @DJOamen

    8 ай бұрын

    Not possible: Save it as word macro enable document

  • @jimmy11112
    @jimmy111125 жыл бұрын

    Would i be able to use the calculator using my keyboard?

  • @DJOamen

    @DJOamen

    3 жыл бұрын

    👍

  • @pbrazo1498
    @pbrazo1498 Жыл бұрын

    Good morning. Please, I would like to know what to do in the programming so that I can use the number keys on the keyboard, instead of using the mouse and clicking on the calculator. Thanks in advance for the guidance. God be with you.

  • @DJOamen

    @DJOamen

    Жыл бұрын

    Use KeyPress Event

  • @pbrazo1498

    @pbrazo1498

    Жыл бұрын

    thank you for your attention. God bless you and your family.

  • @md.ashrafulkabir870
    @md.ashrafulkabir8703 жыл бұрын

    Hello Sir, Thanks a lot for such a nice and easy video on VBA. I just followed the video, but finally it showing "Compile error: Variable not defined" and the word "answer" has become blue highlighted. Please help me Sir.

  • @DJOamen

    @DJOamen

    3 жыл бұрын

    Declare your variables as shown below Option Explicit Dim firstnum As Double Dim secondnum As Double Dim answer As Double Dim operatos As String

  • @md.ashrafulkabir870

    @md.ashrafulkabir870

    3 жыл бұрын

    @@DJOamen Sir, it's now working!!!! Thank you once again!!!

  • @ashia9361
    @ashia9361 Жыл бұрын

    Equal button not working :< please helpp

  • @DJOamen

    @DJOamen

    Жыл бұрын

    Carefully watch the video again and check your code

  • @kalebbenjamin1407
    @kalebbenjamin14072 жыл бұрын

    HELP PLEASE NEED YOUR HELP FOR A HOMEWORK

  • @DJOamen

    @DJOamen

    2 жыл бұрын

    Check your codes

  • @angel_16349
    @angel_163493 ай бұрын

    6:32 code is not working along with addition, sub.. etc

  • @DJOamen

    @DJOamen

    3 ай бұрын

    Carefully watch the video tutorial, and you can also watch the video tutorial with the link below: kzread.info/dash/bejne/eo2is8uaipS_f8Y.html

  • @angel_16349

    @angel_16349

    3 ай бұрын

    @@DJOamen Sorry, I thought it wasn't working... i just realize it was actually automatic... Thank you so much

  • @Gray_JJS_Fortnite
    @Gray_JJS_Fortnite2 жыл бұрын

    It is not working

  • @DJOamen

    @DJOamen

    2 жыл бұрын

    Carefully watch the video tutorial again and check your codes

  • @babu1959
    @babu19593 жыл бұрын

    Percentage not working

  • @DJOamen

    @DJOamen

    3 жыл бұрын

    Add this code to your percentage button firstnum = TextBox1.Text TextBox1.Text = "" operators = "%" Add the code below to your equals below ElseIf operators = "%" Then answer = firstnum Mod secondnum TextBox1.Text = answer End If