Excellent Tutorial! Best part is the the examples used. Gives you 200% understanding of the topic, if not more. Thank you.
@WiseOwlTutorials2 жыл бұрын
Thanks J!
@khalidalisawi80372 жыл бұрын
great tutorial, When I see it. and left all videos which I followed before and follow you
@WiseOwlTutorials2 жыл бұрын
Thank you Khalid!
@timusolds353710 жыл бұрын
Dear WiseOwl!!! Thank you very much for you videos!!! Many thanks from KZ and DE!!! Your Videos are just awesome!!! Thanksssss!!!!!!!!!!!!!! A
@adamderose94689 жыл бұрын
Great tutorial; very easy to understand and in-depth at a good pace for me. I coded along and replayed tons of times.. this and the Arrays tutorial has helped me broaden my beginner's skill set. Thank you!
@tavanix7 жыл бұрын
Best VBA totur ever! Thank you very much WiseOwl, and many thanks to Andrew personnaly!
@SyedKollol10 жыл бұрын
This is the first time I really liked any video on these particular topics. Excellent work and thanks a lot.
@abdulnayazh236610 жыл бұрын
All your videos are awesome man thanks....
@nazaserh3 жыл бұрын
Simply brilliant 👏
@WiseOwlTutorials3 жыл бұрын
Thank you Serge!
@vk4529377 жыл бұрын
Excellent videos. Thank you for the tutorials.
@MagnusAnand8 жыл бұрын
Excellent video!!
@Tan_Rainbow4 жыл бұрын
Excellent videos
@tomash97859 жыл бұрын
Oh yeah finally easy to follow video after tougher ones :)
@thomasfergusen51444 жыл бұрын
great series
@AmitSharma-po1zb5 жыл бұрын
Simply Awesome... :)
@WiseOwlTutorials5 жыл бұрын
Thanks Amit!
@IndiaDefenceWing3 жыл бұрын
I follow your every single video. Currently I am struggling with UIAutomation in VBA. Could you please create some videos on it and help me with any material if available.
@WiseOwlTutorials3 жыл бұрын
Hi Sunil, I don't have any experience with UI Automation so it's unlikely that we'll have any videos on that topic, sorry!
@IndiaDefenceWing3 жыл бұрын
@@WiseOwlTutorials Thanks Andrew. The best part about you is you always reply. Thanks Andrew and keep up the excellent work. It encourages us as well to learn beyond limits.
@WiseOwlTutorials3 жыл бұрын
@@IndiaDefenceWing Thank you Sunil, I appreciate the support!
@adambooth38589 жыл бұрын
Great tutorial. Thanks.
@SemperFiParatus8 жыл бұрын
I'm loving your tutorials. They are informative and accurate. I personally think that if you reinforced your examples by including features learned in earlier models that you'd have a greater following. In every video so far you have failed to use the the [Procedure View] / [Module View] buttons in the bottom left corner of the VBE which really helps me focus on the task at hand by hiding separate modules. The following function would have done the exact job you wanted in the circle example. I am surprised you never used it: WorksheetFunction.Pi Brilliant work so far!
@SemperFiParatus8 жыл бұрын
It's great! The resource is really helping me improve my skills. It would be rgeat to have a set that demonstrates how to build an excel application using VBA so that users can see something built from scratch that has a real world function and is useful like an accounting program that does double entry T accounts. Students would be able to recode it to their needs and learn how valuable VBA is to their job. Your teaching style is brilliant.
@Gk2810_9 жыл бұрын
very informative ... it helped me a lot ..
@tanmoyd8 жыл бұрын
Very informative video - I can't stress it more! Can you please do a video on Constants, Variables and Enums while using VBA for PowerPoint? I really need to know. I am experiencing issues while using Constants for Colors in PowerPoint VBA.
@tanmoyd8 жыл бұрын
+WiseOwlTutorials Thanks a lot! I understand :)
@mahdjoubsofiane40053 жыл бұрын
As usually fantastic style of description I have only one question : What is the key difference between enumerations and collection ! And many thanks in advance
@WiseOwlTutorials3 жыл бұрын
Thank you Mahdjoub! There are many differences between enumerations and collections. You might find the video on collections useful here kzbin.info/www/bejne/bpelhoiJp9KmhpY I hope it helps!
@scotolivera82075 жыл бұрын
Thanks a lot.
@WiseOwlTutorials5 жыл бұрын
You're welcome, thanks for watching!
@DittoGlen9 жыл бұрын
In regards to Pi constant, WorksheetFunction.Pi is also available (at least Excel 2010 its there)
@krn142429 жыл бұрын
Thank you
@pallikishor7 жыл бұрын
Hi Andrew, I have got stuck at one point , need your help. actually I want to pass variable name through cell reference in sheet. If that variable is present in the declared list of the module then corresponding value should come into the reference cell. can we acheive it anyway? If yes ,Please guide me. It will be really helpful. Thanks in advance.
@danielpenteado10 жыл бұрын
You rock!! Thks!
@victoropere21076 жыл бұрын
awesome
@stephenhammond17455 ай бұрын
I have started using enums and classes and find they make coding easier. Wondering if it is possible to use an enumeration in a WITH statement. Eg Define an enum named Address and then say With Address....? Is this possible?
@WiseOwlTutorials5 ай бұрын
Hi Stephen! Unfortunately not, an Enum is just a set of related constants. A With statement needs to work with an object. You could use a Type to do the sort of thing you need. A basic example would look like this: Public Type Address Street As String Town As String Postcode As String End Type Sub With_Address() Dim a As Address With a a.Street = "Some street" a.Town = "Some town" a.Postcode = "AB12 3CD" End With End Sub You could use an Enum to set the datatype of one of the members of the Type like so: Public Enum CountryEnum Australia = 1 UnitedKingdom = 2 UnitedStates = 3 End Enum Public Type Address Street As String Town As String Postcode As String Country As CountryEnum End Type Sub With_Address() Dim a As Address With a a.Street = "Some street" a.Town = "Some town" a.Postcode = "AB12 3CD" a.Country = UnitedKingdom End With End Sub I hope it helps!
@stephenhammond17455 ай бұрын
@@WiseOwlTutorials Ok. I had read somewhere that enums were technically considered objects but maybe that's not true or they just can't be used like other objects. I've just started looking into Types....still fairly new at this (68, retired, and using VBA as a way to keep my brain engaged). Thanks a lot for taking the time to reply. Your feedback/suggestions are very helpful.
@WiseOwlTutorials5 ай бұрын
@@stephenhammond1745 It's super impressive that you're in to class modules and types already - it took me ages to wrap my head around those when I was getting started!
@stephenhammond17455 ай бұрын
@@WiseOwlTutorials I took me a while to understand that these were aids to coding rather than ways of gathering user input when the code was running. Once I realized that, using them was fairly easy. Now it's more a matter of deciding which to use in any particular case.
@artistryartistry72392 жыл бұрын
Why combine one concept people are trying to learn with something more complex like the area of a circle? Why not pick an example everyone understands intuitively, so they're not trying to learn the concept while dealing with additional unnecessary complexity? Why not use something like a tax rate or hours in a day, vs. Pi and area of a circle? Great tutorial, but keep it as simple as possible.