VBA for Beginners - VBA Input Box

แชร์
ฝัง
  • เผยแพร่เมื่อ 22 ม.ค. 2025

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

  • @ronnie2440
    @ronnie2440 8 ปีที่แล้ว +4

    You are the best and lovely person I've ever see online with great love to help others to success. You are too much that I have no words to describe what I think about you. I'm starting my excel learning trip and I know you will always be with me on the road. Thanks. Ronnie

  • @youssefelbourakkadi7246
    @youssefelbourakkadi7246 2 ปีที่แล้ว

    It is possible to run inputbox and keeping control on excel ?

  • @josebetancourt5890
    @josebetancourt5890 8 ปีที่แล้ว +2

    love your videos! very educational focus and Interesting approach!

  • @mcgyvernatividad5036
    @mcgyvernatividad5036 4 หลายเดือนก่อน

    Hi, how about 2 textbox that will be stored in one excel cell... For example name... Textbox first name, textbox middle name, textbox last name... The it will be saved in one cell like A2 cell in excel database...
    Thank you

  • @lars6220
    @lars6220 8 ปีที่แล้ว

    I do not really much because I do not know whether you need to create a new macro or not and if so how?

  • @ritafeiring
    @ritafeiring 10 ปีที่แล้ว +2

    Thanks a lot useful for me as a beginnner. Well explained :-)

  • @anorenbergs
    @anorenbergs 10 ปีที่แล้ว

    Very nice videos! Good job, Trevor!

    • @OnLinePCLearning
      @OnLinePCLearning  10 ปีที่แล้ว

      Hi Aivars,
      Thank for the feedback. Much appreciated.
      Trev

  • @theblackstallian5976
    @theblackstallian5976 6 ปีที่แล้ว

    how can I do this for data forms??

  • @mukeshiit-kgp8954
    @mukeshiit-kgp8954 7 ปีที่แล้ว

    Can u please upload video on Kruskal algorithm in vba

  • @keithrocknrolls
    @keithrocknrolls 8 ปีที่แล้ว

    Hi Trevor
    I am trying to create this code, but I am getting no further than Set AddData as I get Run-time error '1004' Application-defined or object-defined error. Code is listed as below: Thanks for any help
    Sub Login()
    Dim AddData As Range
    Dim AddName As String
    Set AddData = Cells(Rows.Count, 1).End(x1Up).Offset(1, 0)
    AddName = InputBox("Type Your First Name", "Add Name")
    If AddName = Empty Then Exit Sub
    AddData.Value = AddName
    AddData.Offset(0, 1).Value = Now
    End Sub

    • @OnLinePCLearning
      @OnLinePCLearning  8 ปีที่แล้ว

      Hi Michael,
      Here is a link to the web article for this video.
      www.onlinepclearning.com/vba-beginners-vba-input-box-examples/
      Trev

  • @fabriciocarranza7044
    @fabriciocarranza7044 7 ปีที่แล้ว +1

    Very helpful, thank you for sharing your knowledge

  • @ibtisamabdo3559
    @ibtisamabdo3559 7 ปีที่แล้ว +1

    Excellent tutorial , thank you very much.

  • @MahendraTita
    @MahendraTita 9 ปีที่แล้ว +1

    Good Explained Video, Thank you for sharing....

  • @OlehBedrii
    @OlehBedrii 3 ปีที่แล้ว

    I hope he's doing fine - It was some time since he stopped uploading.

  • @mohamadsiddeek7912
    @mohamadsiddeek7912 6 ปีที่แล้ว

    Hi, indeed!I have learned much cording system in Excel VBA by your support.please help me to get calculate from top to bottom mostly I found left to right, this is like a day book in a day book if we enter few journal it should give total in a below row again enter that total has to go below row and should give total and this total only has to next sheet how can solve this matter by excel VBA. please don't ignore this question. God bless you and thanks in advance,

  • @saeedalikhan7128
    @saeedalikhan7128 8 ปีที่แล้ว

    10000000000000 likes for your videos Sir Trevor thanks to U

  • @saeedalikhan7128
    @saeedalikhan7128 8 ปีที่แล้ว

    lovely and very nice video thanks sir Trevor Easton

  • @LPadillaCR
    @LPadillaCR 7 ปีที่แล้ว

    SUPERB!!! I remove my hat before you Mr. Easton.

  • @rajeshmajumdar4999
    @rajeshmajumdar4999 8 ปีที่แล้ว

    Lovely!!!

  • @niphaphatr1
    @niphaphatr1 5 ปีที่แล้ว

    Thank you verymuch.

  • @razoolmohideen8365
    @razoolmohideen8365 11 ปีที่แล้ว

    How to use password character " * " when using the input boxes to enter password
    Thanks
    vba learner

  • @lars6220
    @lars6220 8 ปีที่แล้ว

    oh and this is the problem why its not working Set addData = Cells(Rows.Count, 1).End(x1Up).Offset(1, 0)

  • @michaelross3880
    @michaelross3880 9 ปีที่แล้ว

    Thank you for these videos, I am watching and going along with you. I am having a problem with the code. I followed exactly what you have and I get "Object variable or with block variable not set". I hit Debug and it highlights this "AddData.Value = Nme. I am very new to this but you're making it very easy to learn and this seems right. I am listing the entire code below. Please help.
    Sub Login3()
    Dim AddData As Range
    Dim Nme As String
    Set AddDatat = Cells(Rows.Count, 1).End(xlUp).Offset(1, 0)
    Nme = Application.InputBox("Add Name", Type:=2)
    Auth = 0
    For Each cName In Range("D2:D14")
    If cName.Text = Nme Then
    AddData.Value = Nme
    AddData.Offset(0, 1).Value = Now
    MsgBox "Welcome:-" & Nme
    Auth = 1
    Exit For
    End If
    Next cName
    If Auth = 0 Then MsgBox "You are not authorixed"
    End Sub

    • @OnLinePCLearning
      @OnLinePCLearning  9 ปีที่แล้ว

      Michael Ross
      Hi Michael,
      Set AddDatat should be AddData
      best wishes
      Trev

    • @michaelross3880
      @michaelross3880 9 ปีที่แล้ว

      Trevor Easton Thank you

  • @mostafa88820
    @mostafa88820 7 ปีที่แล้ว

    thnx alot

  • @tasoskatsikoagiannis3564
    @tasoskatsikoagiannis3564 7 ปีที่แล้ว +1

    Dislike as you ignore left and top.