Тёмный

How to Create a Data Entry Form in Excel 

Excel Macro Mastery
Подписаться 84 тыс.
Просмотров 257 тыс.
50% 1

Learn how to write real-world Excel VBA code: 👉courses.excelmacromastery.com/
Want to download the source code for this video? Go here: bit.ly/3bCUnDk
Subscribe to the channel here: bit.ly/36hpTCY
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
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)

Наука

Опубликовано:

 

29 июн 2024

Поделиться:

Ссылка:

Скачать:

Готовим ссылку...

Добавить в:

Мой плейлист
Посмотреть позже
Комментарии : 302   
@Excelmacromastery
@Excelmacromastery 2 года назад
Learn how to write real-world Excel VBA code: 👉courses.excelmacromastery.com/ Hope you enjoy the video. Let me know if you use or plan to use UserForms in the comments below
@vbaclasses3553
@vbaclasses3553 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 года назад
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 года назад
This is almost perfect work. All it needs is Search capability.
@connectorservice3767
@connectorservice3767 13 дней назад
Thanks for the code now it's up to me to learn and modify it for my need. Thanks again.
@brianhayden3509
@brianhayden3509 2 года назад
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.
@azannos
@azannos 2 года назад
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!
@vcondos
@vcondos Год назад
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.
@georgekhaba6436
@georgekhaba6436 2 года назад
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
@SavedbyGraceCT
@SavedbyGraceCT 7 дней назад
Thank you
@stick80
@stick80 Месяц назад
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.
@bobbyterupo3522
@bobbyterupo3522 2 года назад
Excellent tutorial Paul. By far the best approach to user forms I've encountered.
@munimrashid7065
@munimrashid7065 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!
@Excelmacromastery
@Excelmacromastery 2 года назад
Glad you like it Munim.
@munimrashid7065
@munimrashid7065 2 года назад
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 года назад
ru-vid.com/video/%D0%B2%D0%B8%D0%B4%D0%B5%D0%BE-a8MV_J2aTN0.html
@macwest1001
@macwest1001 Год назад
And not to mention he speaks clearly and I like his Irish accent. 🙂
@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.
@lorribetha
@lorribetha Год назад
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!
Месяц назад
Using the Let and Get methods for Userform properties is a game changer, thanks for sharing this tutorial
@karl-heinzlutzel9585
@karl-heinzlutzel9585 2 года назад
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.
@Excelmacromastery
@Excelmacromastery 2 года назад
You're welcome Karl.
@barangaytuliao5297
@barangaytuliao5297 Год назад
Learned a lot. It's great! totally! Just hoping to find a continuation of this video discussing about SEARCH or FILTER features.
@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!
@rodrigobittencourt9772
@rodrigobittencourt9772 Год назад
Great job Mate! Working perfectly!
@wayneedmondson1065
@wayneedmondson1065 2 года назад
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!
@Excelmacromastery
@Excelmacromastery 2 года назад
Thanks a lot Wayne. Glad you liked it.
@PerezerepL
@PerezerepL 2 года назад
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.
@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). 👌
@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!
@Excelmacromastery
@Excelmacromastery 2 года назад
Glad it was helpful Karl!
@jimfitch
@jimfitch 5 месяцев назад
Excellent! I plan t to use this in my next application which I start writing this weekend. Thank you, Paul!
@stevenj7187
@stevenj7187 Год назад
This is excellent. It addressed so many issues I had in the past.
@paulstokes766
@paulstokes766 Год назад
Thank you for sharing your mastery of VBA. I redid the exercise on my own workbook and it worked 🙂
@rukhbrw5316
@rukhbrw5316 2 года назад
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
@michaelsvenson2456
@michaelsvenson2456 8 месяцев назад
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... 🙂
@glennmagcaling8607
@glennmagcaling8607 2 года назад
Wonderful! This is very useful, and can be used over and over. Thanks and more Power.
@pratipbanerjee68
@pratipbanerjee68 7 месяцев назад
High quality tutorial video. Thanks. Very helpful
@russthomas9128
@russthomas9128 Год назад
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!
@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.👏
@knut6924
@knut6924 2 года назад
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
@Excelmacromastery
@Excelmacromastery 2 года назад
Thanks, glad you like it.
@ranaTBS
@ranaTBS 10 месяцев назад
Perfect explanation 👌 Thanks ❤
@wita5593
@wita5593 Год назад
Thank you, greetings from Indonesia
@z.719
@z.719 2 года назад
awesome video as always. Best user form approach
@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.
@ExcelMadeEasy444
@ExcelMadeEasy444 2 года назад
I Found Very Very Useful. 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
@wulp1191
@wulp1191 2 года назад
Great, great, great, so much tips. My code was at least twice as big!
@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.
@grahamparker7729
@grahamparker7729 2 года назад
Great, love this. Certainly planning to use a version of this myself.
@Excelmacromastery
@Excelmacromastery 2 года назад
Thanks Graham.
@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!
@imthewildone
@imthewildone Год назад
You are wonderful. This is straightforward and finessful coding and explanations. Thank you.
@Excelmacromastery
@Excelmacromastery Год назад
Thanks Will
@benjaminwamelda5905
@benjaminwamelda5905 2 года назад
The vba codes are much more readable than what I used to do. Great learning! Thank you sir...
@Excelmacromastery
@Excelmacromastery 2 года назад
You're welcome.
@utama85
@utama85 5 месяцев назад
Thank you so much for the knowledge from your tutorial, I am a beginner
@zakimoustapha7296
@zakimoustapha7296 2 года назад
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 😉
@aliraffay9177
@aliraffay9177 Год назад
Yes book expensive. .....🤗
@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.
@Excelmacromastery
@Excelmacromastery Год назад
Great to hear!
@mayankhb
@mayankhb 2 года назад
As always, amazing
@raksachheun1691
@raksachheun1691 2 года назад
Thank you for this Video.
@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 ?
@iancarr3923
@iancarr3923 Год назад
Excellent, thanks!
@learningenglish9405
@learningenglish9405 9 месяцев назад
I love you so much, thank you so much!
@Rkeev1
@Rkeev1 2 года назад
So many outstanding methods; you are truly a master!!
@Excelmacromastery
@Excelmacromastery 2 года назад
Thank you! Cheers!
@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
@Excelmacromastery
@Excelmacromastery 2 года назад
Thanks Andrew
@MahendraTita
@MahendraTita 2 года назад
Hi,It's again great coding with reusable codes video with clear video and voice and great presentation.Thank you again !!!
@Excelmacromastery
@Excelmacromastery 2 года назад
You are welcome!
@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.
@onurtunc9468
@onurtunc9468 2 года назад
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 2 года назад
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
@johnboyginger
@johnboyginger 7 месяцев назад
Helpful tip - run this video at 50% speed to have a chance of following what’s happening.
@fahadsardar6180
@fahadsardar6180 2 года назад
I like it. Like to see of such stuff.
@michael.andreae
@michael.andreae 2 года назад
That was very helpfull!
@souzamotasacul
@souzamotasacul Год назад
Amazing!!! Thank you.
@Excelmacromastery
@Excelmacromastery Год назад
Thank you too!
@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
@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
@WoodConcreteCreations
@WoodConcreteCreations 7 месяцев назад
thanks, i learned alot!
@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!!!👍😀
@Excelmacromastery
@Excelmacromastery 2 года назад
Great to hear!
@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
@Excelmacromastery
@Excelmacromastery 2 года назад
There is a delete item check in the code download.
@alexeiofp
@alexeiofp Год назад
gracias maestro!
@biotechwarriors4116
@biotechwarriors4116 10 месяцев назад
great tutorial.
@monstpm
@monstpm 2 года назад
Very informative video, I've learnt a lot from this. Thanks 😌
@Excelmacromastery
@Excelmacromastery 2 года назад
You're welcome Paul.
@MrMallesh1
@MrMallesh1 2 года назад
Very nice, lot of new things, will use from this, expecting few more videos on this.
@Excelmacromastery
@Excelmacromastery 2 года назад
Thanks Mallesh.
@astupus
@astupus Год назад
Thanks a lot it looks very easy and nice
@oguzturkyilmaz543
@oguzturkyilmaz543 2 года назад
Thank You Very Much
@b99eu
@b99eu 2 года назад
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!
@Excelmacromastery
@Excelmacromastery 2 года назад
Thanks Fritz, those are good suggestions.
@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
@sniklegem
@sniklegem Год назад
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?
@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👍
@Excelmacromastery
@Excelmacromastery Год назад
Thanks Hadi
@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.
@Excelmacromastery
@Excelmacromastery 4 месяца назад
Glad you found it useful.
@alepontocom3090
@alepontocom3090 2 года назад
Dear, excellent Tutorial, please a tutorial at the master detail with excel vba. Congratulations.
@FMFT
@FMFT Год назад
Another good updates could be a [Search] and a [Print] option...
@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.
@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 года назад
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!
@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
@Excelmacromastery
@Excelmacromastery 2 года назад
Thanks for the suggestions
@user-dy7ye4wg1l
@user-dy7ye4wg1l 11 месяцев назад
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.
@scotolivera8207
@scotolivera8207 2 года назад
very helpful
@nicor1501
@nicor1501 2 года назад
Great video once more. How would you approach sorting the Tables before populating the ComboBoxes ?
@s1ngularityxd64
@s1ngularityxd64 2 года назад
Awesome content. This improves my userforms remarkably. Clean code and very responsive, compare to my current one. Did u ever experienced Run-time error '-2147024882 (8007000e) errors at the rowsource properties? Running 32GB, how there are not enough ressources, Microsoft hello? Sometimes it appears and I do not know why. btw? a list-view version would be interesting, offers so much functions..
@ARQPAKOGARCIAS
@ARQPAKOGARCIAS Год назад
you are Gooood
@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
@datawarrior2023
@datawarrior2023 2 года назад
Great video! Curious, how would you do multiple tables in the form?
@stevechow8892
@stevechow8892 2 года назад
very good!
@Excelmacromastery
@Excelmacromastery 2 года назад
Thanks Steve.
@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?
@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(ru-vid.com/video/%D0%B2%D0%B8%D0%B4%D0%B5%D0%BE-gkLB-xu_JTU.html) contains the code for the searchable dropdown.
@user-kg6cd4nk6k
@user-kg6cd4nk6k 5 месяцев назад
Bravo
@dujlim6705
@dujlim6705 Год назад
The best
@justinwduff
@justinwduff 12 дней назад
Great tutorial! Wondering, is there a technical reason you use functions and arrays outside of the Userform to populate your combo boxes instead of Rowsource?
@katev1212
@katev1212 Год назад
Thank you for providing such a great video :) does this form allow multi-user to save the form at the same time?
@affindi77
@affindi77 9 месяцев назад
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?
@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
@zakimoustapha7296
@zakimoustapha7296 2 года назад
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
@dexelform
@dexelform 2 года назад
Very nice - simple clear structure. I would be interested to see how you would structure data validations - for example, suppose you wanted to ensure that the employee name was unique. Could I suggest that for working with larger databases it would be useful to use the currently selected record in the database as the highlighted record when displaying the list. So for example if the user has selected record ID 5 in the Staff worksheet, that you would highlight that record in the list when you run data entry (rather than going back to the first record). As a further suggestion (pushing my luck here) handling filtered data would be of interest. Keep up the good work. Corbett
@Excelmacromastery
@Excelmacromastery 2 года назад
Thanks for the feedback.
Далее
How to Create a UserForm Like a Pro
20:03
Просмотров 14 тыс.
EASILY Make an Automated Data Entry Form in Excel
14:52
Sinfdosh xotin 7😂
01:01
Просмотров 2,3 млн
10 Years of VBA Array Knowledge in 40 Mins
41:57
Просмотров 10 тыс.
SUPER EASY Excel Data Entry Form (NO VBA)
6:22
Просмотров 2 млн
Simple Excel Data Entry Work Form Tutorial
10:49
Просмотров 114 тыс.
How to Run UserForm without Showing Excel Window
12:44
Просмотров 104 тыс.
🛑 STOP! SAMSUNG НЕ ПОКУПАТЬ!
1:00
Просмотров 56 тыс.