very helpful material, but for some reason when I save new data or save an edit from the user form level, it takes about a minute, when I save it directly from the VBA code, it takes a second. Could you please help me?
i think you don't know power of VBA Public Dim whichPet as string (sorry for my bad vba code) Option Button Dog .Click event may be set to whichPet= "Dog" Option Button Cat, Click event may be set to whichPet= "Cat" Just like we do in javascripts ? or HTML ? HIDDEN LIVE CODING working in background setting vars to value So, now when we want to take values of Cat/ Dog option , in Submit_click sub then just type a simple code inputRange... Value = whichPet 'Public variable which contains click equivalents
UserForm Free Couse Playlist: th-cam.com/video/QQNQObpAjL8/w-d-xo.html
Thanks for sharing this article , it's helpful.
You're very welcome! I'm glad you think so :))
This was brilliant thank you!
Nice tutorial! Thanks!!
Thanks Wayne! :)
Thanks! 👍
You're very welcome Peter!
a curious question about the course: can you also see the entered records in the entry screen in order to possibly change them, delete them, etc? 😊
are you the guy with the cookies ? Your voices are so alike :)
Thanks so much, can you send the link for excel user form course 1
Yes sir, here you go: th-cam.com/video/QQNQObpAjL8/w-d-xo.html
Great Follow-Up Tutorial...Thank You Sir :)
Thank you so much Darryl! I'm glad you like it :)
very helpful material, but for some reason when I save new data or save an edit from the user form level, it takes about a minute, when I save it directly from the VBA code, it takes a second. Could you please help me?
When I do the listbox, what if the RowSource has duplicate value? How to code to make sure the listbox only contain unique value? Thank you!
watched
i think you don't know power of VBA
Public Dim whichPet as string
(sorry for my bad vba code)
Option Button Dog .Click event may be set to whichPet= "Dog"
Option Button Cat, Click event may be set to whichPet= "Cat"
Just like we do in javascripts ? or HTML ? HIDDEN LIVE CODING working
in background setting vars to value
So, now when we want to take values of Cat/ Dog option , in Submit_click sub
then just type a simple code
inputRange... Value = whichPet 'Public variable which contains click equivalents