How to Create a Data Entry Form in Excel

Поделиться
HTML-код
  • Опубликовано: 4 июн 2024
  • How to Create a Data Entry Userform in VBA
    In this video, I'm going to show you how to create a Data Entry form for your Excel records. You can add, remove and edit records using this form. Let me know in the comments if there are other features that you would like to see on a data entry form.
    #VBADataEntry #DataEntryUserForm #ExcelVBAUserForm
    SUBSCRIBE TO THE CHANNEL: bit.ly/36hpTCY
    DOWNLOAD THE SOURCE CODE FOR THIS VIDEO: bit.ly/3bCUnDk
    Related Training
    The Excel VBA Handbook Course(TheExcelVBAHandbook.com)
    Webinar Archives - 60+ Hours of VBA training(excelmacromastery.com/excel-v...)
    Free Excel VBA Resources
    Excel VBA Articles (excelmacromastery.com/vba-art...)
    Useful VBA Shortcut Keys
    ========================
    Debugging:
    Compile the code: Alt + D + C OR Alt + D + Enter
    Run the code from the current sub: F5
    Step into the code line by line: F8
    Add a breakpoint to pause the code: F9(or click left margin)
    Windows:
    View the Immediate Window: Ctrl + G
    View the Watch Window: Alt + V + H
    View the Properties Window: F4
    Switch between Excel and the VBA Editor: Alt + F11
    View the Project Explorer Window: Ctrl + R
    Writing Code:
    Search keyword under cursor: Ctrl + F3
    Search the word last searched for: F3
    Auto complete word: Ctrl + Space
    Get the definition of the item under the cursor: Shift + F2
    Go to the last cursor position: Ctrl + Shift + F2
    Get the current region on a worksheet: Ctrl + Shift + 8(or Ctrl + *)
    To move lines of code to the right(Indent): Tab
    To move lines of code to the left(Outdent): Shift + Tab
    Delete a Line: Ctrl + Y(note: this clears the clipboard)
  • НаукаНаука

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

  • @Excelmacromastery
    @Excelmacromastery  2 года назад +36

    Hope you enjoy the video. Let me know if you use or plan to use UserForms in the comments below

    • @vbaclasses3553
      @vbaclasses3553 2 года назад +2

      Enjoyed it very much, will be referring to it often. I am absolutely in awe of the tiny procedures. Thank you.

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

      Yes, I am making it, replacing my existing process. You make me do stuffs. This approach is certainly safer and cleaner than my current one. But my current method is already quite complex with conditional validation, searches, formulas. I need to test it more thoroughly before I can confirm I will use this.

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

      thank you ... any video about digital signature certificate for vba

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

      Great video. still waiting to receive code to download the file

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

      I will use it to capture heavy load services, it would be interesting to know how you do the save to customize the Userform, with the information that is in the Settings sheet

  • @hichamhadj9640
    @hichamhadj9640 2 года назад +17

    This is almost perfect work. All it needs is Search capability.

  • @georgekhaba6436
    @georgekhaba6436 2 года назад +28

    time table :
    @1:52 creating the form
    @2:48 inserting the list box
    @3:48 inserting the command buttons
    @6:19 programing the close button
    @7:06 inserting a module for the display of the data entry form
    @8:19 selecting the delete new and edit button to be programed
    @8:40 initializing the form
    @9:29 creating a range module
    @10:24 creating a link to the list box using row source
    @11:30 coding the delete button
    @13:23 creating a form for the staff info
    @16:24 programing the close button on the new form
    @17:16 initialize the userform
    @17:51 the create new id function
    @18:52 loading combobox with data
    @20:32 making full time option is default
    @21:35 saving the new data
    @22:58 emptying the textboxes
    @23:38 writing the data to the worksheet
    @26:20 coding the edit staff button
    @28:10 reading the data details
    @31:58 writing the new updates to the sheet
    thank u for the great lesson and i hope the time stamps helps guiding threw the lesson

  • @brianhayden3509
    @brianhayden3509 2 года назад +9

    I want to concur with so many of the earlier posters- your coding is exemplary when it comes to efficiency, cleanliness and reuse. By far the best VBA channel I've come across. I only wish I had the time to sign up to your mastery course.

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

    Excellent tutorial Paul. By far the best approach to user forms I've encountered.

  • @azannos
    @azannos 2 года назад +4

    One if not the best video for forms….amazing. Please consider making another one with only using Listobjects (tables). Maybe with header-detail scenario? Keep up the GREAT job you are doing!

  •  19 дней назад

    Using the Let and Get methods for Userform properties is a game changer, thanks for sharing this tutorial

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

    I'm going to create a new record user form with combo boxes to speed up data entry of my emails WIP sheet (I can edit records directly in the table, so don't need the intermediate form). This code is very clean and easy to understand - many thanks!

  • @munimrashid7065
    @munimrashid7065 2 года назад +2

    An EXTRAORDINARY tutorial in many different ways, enabling us to brainstorm for extending it further to meet our practical needs. Thank you indeed Paul, for leading us to that direction!

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

    Yes, excellent! Wanted to echo several others who would like to see how you approach FILTERING (particularly for apps with hundreds or thousands of rows, perhaps with a ListObject). 👌

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

    Thanks for sharing. I have wanted to do this in previous uses but never got it all figured out. You make it look so easy. I will certainly give it a shot.

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

    This is excellent. It addressed so many issues I had in the past.

  • @lorribetha
    @lorribetha 11 месяцев назад

    I needed to create a form for Stock Management for my colleague, and this video was perfect talking me through my first VBA project. I will say I tripped several times with not being able to download the source code (Company blocked), however extremely happy with how it's turned out! Will be watching more of your videos!

  • @vcondos
    @vcondos Год назад +5

    Amazing video. For an amateur programmer like myself there is so much information to think about, presented in such a clear and compact way. Thank you!
    The modular structure and the cleanliness of the code, offers so much food for thought for on how to use it and adapt it in various situations. Every step in the video taught me one new thing, and got me thinking about how I've been doing things, or about possibilities on how to improve my coding approach in various areas.
    Building applications mostly for own use, I always thought of user forms as unnecessary, or more accurately restrictive, believing that data entry/manipulation is generally faster doing it directly in the various areas where the information is kept. Having been rethinking lately of how to improve an ever growing excel "database" in terms of data and scope, which is reaching certain limits, I've been looking for things here and there to get ideas on how to apply some extra structuring and to decide whether to introduce some code in an application that I was keeping purposely with minimum makros and mostly relying on tables, names, pivots, etc. After going through this video, I am actually starting to think of introducing user forms even in this application which I wanted to keep with as little code as possible and with as much as little structured data entry.
    This is how inviting this video has been for me.
    Oh and actually, as someone asked about putting out an extra video that applies this code to a structure involving only tables, well, this video is so good and the code is so well structured, that I've actually very easily modified it to try it out in a structure with tables.

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

    Thank you for sharing your mastery of VBA. I redid the exercise on my own workbook and it worked 🙂

  • @rodrigobittencourt9772
    @rodrigobittencourt9772 Год назад +1

    Great job Mate!
    Working perfectly!

  • @munimrashid7065
    @munimrashid7065 2 года назад +17

    Thanks in advance for the promised video! There are many examples of Data Entry Userform in VBA in the net, but when it comes from Paul Kelly, we certainly have some expectations! code reusability, cleanliness, readability and efficiency.
    The screenshot looks attractive, and what I would expect is, there is an easy way to populate the dropdowns with options chosen from a ranges that can grow over time.
    I would expect, in future you’ll come up with another advanced Userform that enables easy way to incorporate cascading/dependent dropdowns to ensure an upper level of data validation!

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

      ruclips.net/video/a8MV_J2aTN0/видео.html

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

      And not to mention he speaks clearly and I like his Irish accent. 🙂

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

    What an amazing tutorial. I tackled this myself and the lines were probably five times as long. I learn so much from you, thank you!

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

    I'm grateful for your channel. Thanks for your teachings. I will be using this UserForm and this will guide me to make some modifications that will suit my actual need, which is that I would like to be able to add multiple rows of data entry 'before' hitting the save button. Regards.

  • @karl-heinzlutzel9585
    @karl-heinzlutzel9585 2 года назад +1

    Paul, that's fantastic. It encourages me to change my previous user forms. I see a lot of potential for improvement for me, as well as very simple and structured programming.
    Thank you very much for this. I am looking forward to more examples.

  • @ranaTBS
    @ranaTBS 9 месяцев назад +1

    Perfect explanation 👌 Thanks ❤

  • @pratipbanerjee68
    @pratipbanerjee68 7 месяцев назад

    High quality tutorial video. Thanks. Very helpful

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

    Learned a lot. It's great! totally! Just hoping to find a continuation of this video discussing about SEARCH or FILTER features.

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

    Hi Mr Paul, I'm beginner in vba and knows very less in vba. After seeing your video, it even cleared to me that you gave exceptional skills in vba

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

    The vba codes are much more readable than what I used to do. Great learning! Thank you sir...

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

    Thank you, greetings from Indonesia

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

    Wonderful! This is very useful, and can be used over and over. Thanks and more Power.

  • @russthomas9128
    @russthomas9128 Год назад +2

    I agree with so many of other people. This was a huge help to me as I'm a civil engineer and make use of VBA to keep me from repeating mundane tasks. I'm looking forward to watching more of your content.
    If you take questions... how would I place a filter in the listbox you created? Thanks!

  • @jimfitch
    @jimfitch 5 месяцев назад

    Excellent! I plan t to use this in my next application which I start writing this weekend. Thank you, Paul!

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

    Paul is the BEST 👌 teacher of VBA. Thank you so much for your hard work & source code for us. Liked & definately Subscribed . Love ❤the tutorial. Looking forwarrd to more.👏

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

    You are wonderful. This is straightforward and finessful coding and explanations. Thank you.

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

    at the 13th minute, i can say, you are perfect sir. Thanks so much. this is the first time i have ever seen such a perfect way describing codes. Appreciate

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

      i appreciate and thanks again. i spent maybe 3 hours with your video and create a useful and basic program for my stuff. You are great. do u have udemy education? i believe i ll learn much more. thanks thanks again

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

    Great tutorial as always. Thanks a bunch. I have a suggestion though. Rather than have two different forms do the "Add New Staff" and "Update existing staff". One form can do that. Just change the "Save button caption" depending on "new mode" or "edit mode". Same sub for saving new staff can be used for existing staff. The difference would be the "row number". New staff row num is Next Avail row. Existing staff: row offset from listbox.

  • @utama85
    @utama85 4 месяца назад

    Thank you so much for the knowledge from your tutorial, I am a beginner

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

    I'm in the process of integrating this tutorial for my needs and in the interim I learned about ListView Controls. I researched ListView and would like your opinion on the differences why one is better than the other. Excellent tutorial!

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

    So many outstanding methods; you are truly a master!!

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

    I want to achieve something I think a bit more complex. But this is a good starting point. I’m new to this

  • @johnboyginger
    @johnboyginger 7 месяцев назад +2

    Helpful tip - run this video at 50% speed to have a chance of following what’s happening.

  • @michaelsvenson2456
    @michaelsvenson2456 7 месяцев назад

    This is just the thing I was looking for, perfect. Even if it going a little bit fast, (nice with pause) it's a great video. Thumbs up... 🙂

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

    I Found Very Very Useful. Thanks.

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

    Hi Paul. This is awesome! Full of great tips and techniques. I like the way you separate the code into logically connected components vs. writing it all behind the buttons. Studying this in depth and learning more each time through! Thanks for sharing :)) Thumbs up!! PS - Also like your formatting choices which give a more modern look!

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

    Great, great, great, so much tips. My code was at least twice as big!

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

    Another masterpiece in a series of outstanding VBA videos! Asking what could be next: adding a filter (there are various possibilities…only one column…multiple columns….change of listbox as u type) and a print function (sorry woods) would be great.
    Thx again Paul….and tell Microsoft VBA is the future. They have created a jewel

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

    Your tutorial is very straight forward and easy to follow. Before I go through all of these steps (which I will for practice at some point), does this cover multi-instance records using indexes to be able to use entry into multiple worksheets / tables? Thanks

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

    This was a good tutorial. I did get tripped up a few times following along but the included worksheet showed me the deviation so I thank you for that.
    To take this further, refreshing the list in real time for adds and removes would have been cool. I could see how another list on the modfiy and edit page would give that update view real time... "people you just added" list. and when close that would be present on the initial list.
    personally i would like to see role and group selection UI with the forms. thats where i am hoping to build some functionality with forms. thanks for the video

  • @z.719
    @z.719 2 года назад

    awesome video as always. Best user form approach

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

    This was a really helpful video and I used it as a guide to make a data entry form for tracking failure events at wind farms. I would like to modify it to include some data validation such as making sure certain text boxes only allow dates or integers. It would be great to have a similar walkthrough of that.

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

    Great work, I love it. You asked about other features: a search feature would be good for when working with lots of data.

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

    Great, love this. Certainly planning to use a version of this myself.

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

    Thank you in advance for such a useful theme. I guess it would be very good if you explain how to enter / delete / change data via Data Entry Form for linked lists.

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

    Very helpful! Thanks a lot. I will definitely update my own solution.
    You asked about possible further features to add. Would be cool to see:
    - filter Staff list by field data (e.g. only show people from a specific country) and still be able to edit an entry
    - mark more than one person in the list (select via mouse click or a specific field content) and do an action with the selection (e.g. send an E-Mail)
    - can some list rows be in a different color depending on a field data (e.g. person is on holiday and not available at the moment)
    Thanks again for your effort and all the learnings I have from it!

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

    Hi,It's again great coding with reusable codes video with clear video and voice and great presentation.Thank you again !!!

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

    Thank you Paul for share your huge knowdlegees with us humans beans. I'd like to set a check after had clicked the delete button just in case to confirm that the record must be delete. Thank you again

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

    Hi, you have made an excellent video.
    You could add:
    How to do it now with a ListView?
    How to add a Filtered range to the listbox or ListView?
    Thank you very much

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

    Thank you for this Video.

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

    Very informative video, I've learnt a lot from this. Thanks 😌

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

    Hi Paul. Great video. You asked for suggestions to improve the user form: 1) Maybe validation to make certain the user does not make a duplicate entry. 2) maybe add prev/next arrows to scroll through Listbox. Thanx

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

    Thanks so much for this video tutorial. Your explanations and code are awesome. Would you make a video on making a multipage user form ?

  • @zakimoustapha7296
    @zakimoustapha7296 Год назад +1

    I like the way you link your listbox to the sheet. It's a tricky way and really super important. You are the best teacher I've ever seen but still your book is expensive 😉

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

    Thanks for the video! If you’ve made certain columns named ranges, can you extend the named range (automatically) when you enter a new row of data?

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

    As always, amazing

  • @catinengland4833
    @catinengland4833 4 месяца назад

    I'm new to Excel VBA. Found this extremely helpful - thank you. The content covered nearly all the aspects I was looking for apart from being able to Search using a cell for Name or Telephone
    number as examples. Also I would like the ID number to be populated but not editable by the user. Will start digging to see what other Excel Macro Mastery solutions can help me.

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

    Excellent, thanks!

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

    Great video!!! I’ve done loads of application for users using vba but I do like to get to know how others deal with vba, their way of developing user forms etc. I like your video a lot. Impressing!!!👍😀

  • @souzamotasacul
    @souzamotasacul Год назад +1

    Amazing!!! Thank you.

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

    Thank You Very Much

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

    Great video once more.
    How would you approach sorting the Tables before populating the ComboBoxes ?

  • @sniklegem
    @sniklegem Год назад +1

    I couldn't get shStaff to actually reference the Staff worksheet so I've had to replace it with Sheets("Staff"). Otherwise, so far so good! Great video.

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

      exactly what I was looking for! How come it didn't work using shStaff?

  • @TheSardOz
    @TheSardOz 4 месяца назад

    Hi Paul, thank you for the great video ... there is way to edit text alignment for individual columns in the listbox using RowSource?.. Thank you!

  • @learningenglish9405
    @learningenglish9405 8 месяцев назад

    I love you so much, thank you so much!

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

    Thanks a lot it looks very easy and nice

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

    Great video! Curious, how would you do multiple tables in the form?

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

    You did an amazing job.Thank You so much, I love your youtube channel. I wish you all the best.
    Best regards,Andrew

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

    This was an amazingly helpfull video! Thanks a lot. I did notice 1 mistake though (which cost me a bit of frustration): at 24:50 in the iif statement you put true between quotes. This doesn't work but doesn't give you an error message ether. Instead it just defaults to the False statement.

  • @WoodConcreteCreations
    @WoodConcreteCreations 6 месяцев назад

    thanks, i learned alot!

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

    Very nice, lot of new things, will use from this, expecting few more videos on this.

  • @user-yt8mn4ch1x
    @user-yt8mn4ch1x Год назад

    Loved the video. Is it possible to create the form using listview and still have the ability to edit the entries? I like the grid lines of list view and hoping to incorporate it.

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

    Dear, excellent Tutorial, please a tutorial at the master detail with excel vba. Congratulations.

  • @affindi77
    @affindi77 8 месяцев назад

    Thank you very much for sharing another amazing video... I just wonder why you did not use listobjects instead of range for the Staff record?

  • @biotechwarriors4116
    @biotechwarriors4116 9 месяцев назад

    great tutorial.

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

    I thought I knew everything in vba ... just discovered the accelerator property 😂 so used to the VB "&" placed in the caption and was wondering why it wasn't implemented in vba lol... Thanks Paul, I love your videos👍

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

    gracias maestro!

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

    Hi I'm work on a project and I learned a lot from your tutorial. As par of on going project, can you teach us how to create a search using a combo box as a criterion and when you enter the data that you want to search in the text box search the results will display in the list box and text box

  • @user-dy7ye4wg1l
    @user-dy7ye4wg1l 10 месяцев назад

    Great video (and site). Very professional code. Thanks for sharing. Some remarks:
    Loved the way a userform can be duplicated.
    If user is allowed to select any cell in the “Staff” worksheet, to indicate the record to be updated or deleted, “New”, “Edit” and “Delete” buttons could be put directly in this worksheet, with the same functionalities. Thus, “formStaffList” could be skipped. (Albeit, in this case, this video, too.)
    There are tutorials that discourage the usage of RowSource property, in favor of the List one. Probably because of Excel bug(s).(?)
    There is a bug in “CreateNewID” method. If the last record is deleted, and a new one is added afterwards, the new one takes the Id of the deleted one. Instead, perhaps the last used Id could be stored in a cell of the workbook, and its value be incremented by one, whenever a new record is created.
    Again, thanks for your services.

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

    Like the spreadsheet table of form Settings you keep. Do you have code to store / write the userform settings or must it all be done by hand?

  • @michael.andreae
    @michael.andreae 2 года назад

    That was very helpfull!

  • @stick80
    @stick80 23 дня назад

    You have some great video's. If I can give you a little constructive criticism, you should pan out and pause for a few seconds before switching windows (So we can see all of the code). I'm trying to follow along and write the code along with the video. I will be writing out a line and all of a sudden you switch screens. I have to back the video up or catch the code the next time you switch back to that screen. I am a beginner and I'm not as fast as you. Keep the videos coming.

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

    Paul, Great stuff again. I am doing something with this but rather than a worksheet being the data source I am using an array. Any tips on expanding this method to an array would be helpful. Jon

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

    I like it. Like to see of such stuff.

  • @FMFT
    @FMFT Год назад +2

    Another good updates could be a [Search] and a [Print] option...

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

    You are the best of the best. But what I didn't like is to double the userform. You could use another method just to catch if the form was open for save mode or édit mode. Please help us to create a class for validation controls so we don't need to write each time the same code

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

    Hi, Thanks for this detailed file. If i want to make "Edit" on entering a "record number" , how to do that ?

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

    Thank you for providing such a great video :) does this form allow multi-user to save the form at the same time?

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

    Thank you for the video.
    I still have a question, how can I import and save data to listbox from an external .csv file?

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

    very helpful

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

    nicely done, how can you update the list form if the dataset changed after you open it say from another user?

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

    Paul, I see, you spent much time for this video! But it's a great vid for learning that GUI stuff! Thanks for all your YT content!😉😁🤟😎

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

      Thanks John. Glad you like it.

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

      @@Excelmacromastery Yeah, I do! It's a good help for new-bes and those, who thinks that's magic! I hope a lot of people will watch this vid!😉
      Edit:
      Of course more experienced can learn some new things!😇 E.g.: Iif I never used yet, it will shorten my code in future!

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

    Great video, as always. Populating the Edit Staff Member form on *activate*, though, seems very problematic. If I start editing a record, then I Alt+Tab to another window to check something, then I Alt+Tab back, I'll silently lose all my unsaved edits.

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

    Hi thx for all. Any Idear to change Height of the first Row (header) ?

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

    Hi, I found your video and lost it so looked at others. Yours is by far the best and easiest to understand and adapt. I've subscribed and can't wait to see more. One questions: can you have a lookup with predictive text? Eg., we have a list of client contacts, we'd like the sales people to be able to start typing the first name (say Andrew) and start seeing all the Andrews in the list. Then have the corresponding client details populate automatically.

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

      Glad it was helpful! This video(ruclips.net/video/gkLB-xu_JTU/видео.html) contains the code for the searchable dropdown.