0.75x speed 1.0x normal 1.25x speed 1.5x speed 2.0x speed
@muhammadarif800610 ай бұрын
Excellent teaching Miss. Thanks 🇵🇰
@johannesmp310 ай бұрын
Amazing explanation. Never thought of it that way. Just learned VB. Maybe I should have looked at this 1st
@pk2k2 Жыл бұрын
you made my day!
@estherm.duartemunoz7339 Жыл бұрын
Best explanation ever!
@Yznanee Жыл бұрын
Thank you, Amber! You save my workbook.
@luisweber4399 Жыл бұрын
FYI, there is not Audio from sec 18-29.
@jmathew69882 жыл бұрын
Thank you. That was a pretty useful information.
@itssahib45122 жыл бұрын
Lowkey I was expecting a bunch of downbad guys in the comments lmao. Thanks for the video - this fr helped me with an assignment
@2AATV2 жыл бұрын
Bonne continuation
@kebincui2 жыл бұрын
Thanks Amber
@kebincui2 жыл бұрын
Thank you Amber
@kebincui2 жыл бұрын
You are the best VBA presenter🌹🌹👍👍
@kebincui2 жыл бұрын
Thanks 👍👍
@kebincui2 жыл бұрын
Very good thanks
@thirupathithiru33193 жыл бұрын
Good
@videoart14963 жыл бұрын
Why all IF tutorials are the same with a msg box ? What if we want to change the text or the content of a cell ? ..
@amberofiesh79663 жыл бұрын
probably because of the visual interaction and obvious confirmation that 'something happened' -- in reality the if statements are often sourounding large chunks of code with things such as changing a cell. You could replace the msgbox line with range("a1").value = "my value response here", or to be more explicit use the sheet name or sheet number to indicate the worksheet as well.
@OG_GAMERS73 жыл бұрын
Good to learn, thanks🙏🙏
@stevenmulholland36133 жыл бұрын
Thanks for posting this information. I bought a full size keyboard connected to my lap top which does not have the pause break key. Now I press ctrl alt pause break and my loop code is interrupted.
@hardeepcharak3 жыл бұрын
I really appreciate your time and effort. The people who have arrived at this video means they have the skills to dig deep into roots instead of cramming the stuff like many does.
@tapoyren3 жыл бұрын
Thank you, it helped)) easc twice
@amateurvloggers23193 жыл бұрын
She has cute rabbit front teeth
@edgardonor4 жыл бұрын
this is what i was looking for a long time
@lmoujatv97294 жыл бұрын
smo7at
@lmoujatv97294 жыл бұрын
mklkha
@arvindkumarauro97314 жыл бұрын
Nicely explain... It's very helpful to understand the concept 👍
@ALVINIUM14 жыл бұрын
Thanks!
@dbf58034 жыл бұрын
In the description of the House, You have MEMBERS of the house, with 'Rooms(plural)' - the Collection, at the top, followed by the individual rooms. Does the logic follow through then, and under 'Members of Room', instead of just 'Door' and 'Window'... should there be a 'Doors' collection and a 'Windows' collection as well? Especially since there are 3 windows. Thanks for clarifying!
@amberofiesh79664 жыл бұрын
Yes, after rewatching this video I realize I didn't take every opportunity to re-emphasize the extent to which collections exist. any time there's opportunity to have more than one repeating sub-object (all of the same type, like the windows example) that assigns itself to another object, essentially it becomes a collection. so in this analogy houses rooms windows windowpanes doors etc. are all potential examples of a collection.
@dbf58034 жыл бұрын
@@amberofiesh7966 Thanks! Really do appreciate the clarification.
@USSBARBEL4 жыл бұрын
These 3 videos on VBA syntax (yeah, I watched the 3rd one already) are amazing. The knowledge that you can gain from KZbin is not always reliable - this is.
@amberofiesh79664 жыл бұрын
thank you, Steve! I hope to bring more soon.
@MrSantoshmama Жыл бұрын
@@amberofiesh7966 ❤
@VinodYadav-nn2lj4 жыл бұрын
This is very helpful. Thank you.
@KC_47.4 жыл бұрын
I SEARCH FOR VBA EXPLANATION ALMOST 1 MONTHS ALREADY.. NOW I FOUND THIS CHANNEL!! 👑
@MohammedAli-tf2yn4 жыл бұрын
Good lesson
@MohammedAli-tf2yn4 жыл бұрын
Thanks
@finalexam9934 жыл бұрын
very informative
@peter-e2q4 жыл бұрын
Excellent analogy!!! All fits now.
@barryarnold55775 жыл бұрын
These are GREAT videos. They are very clear and thorough. I've spent hours reviewing other videos but haven't listened to any as useful as these. Thanks!
@MrDrewluna5 жыл бұрын
i was just wondering, the whole point of declaring variables is just for your reference? and making it nothing would just revert is back as if nothing happened?
@amberofiesh79665 жыл бұрын
Declaring variables forces them to stay in the class that you assigned. If you're passing a variable into a function that requires a specific data type, this can ensure the calculation does not break or produce an undesired result. If I pass in a string surrounded by quotes "1" the program will know I'm working with a string without me explicitly declaring it so. Later if I try to treat it like a number, by not having declared the type, the program will attempt to see if it can turn it into a number for the purpose of executing the code I asked it to write example: "1" + 1 = 2 if not declared, it will try to make this work. Alternately, let's say I have something like phone number, or social security number, and I want ONLY numbers, I do not want any string characters, I can explicitly declare it so which will prevent anyone from making an alternate assignment. In this case I can evaluate if something is numeric, produce an 'error' when it's not, and address the problem of fixing the user's entry to I can successfully maintain the data integrity of the element (ie. phone number or social security number without dashes or special characters). There's a lot that happens with declaring or forcing types onto your data that happens much more naturally in databases, but is a little 'loose' in the VBA environment.
@gobertoangela95915 жыл бұрын
Thank you very much, I was really struggling to grasp VBA since it's my first shot at programming and I have no prior reference to go by. Really helpful.
@paranaueuk5 жыл бұрын
Kudos Amber, cool analogy.
@nirinadonaldherijaona21686 жыл бұрын
I love the approach of teaching!!!
@jarrodstewart83676 жыл бұрын
Awesome introduction! Really helped clear up some of my conceptual struggles with vba. Thanks a bunch!
@Shgggao_6 жыл бұрын
Thank you so much!!! I have been looking for a video like this to give beginners a general idea about how to start the Excel VBA!!!! That's very helpful! Hope you can make more videos!
@aftabalamshaikh45156 жыл бұрын
thank u ...very helpful
@ExcelMadeEasy4446 жыл бұрын
Amber Ofiesh Where are U ? Waiting new videos..
@amberofiesh79666 жыл бұрын
Hang tight! More content coming soon :) I just got a new job so I have been busy with the transition, but I will have time to make more videos in the coming days.
@ExcelMadeEasy4446 жыл бұрын
Congratulation !!! Best wishes for new job . But miss u !
@JadyGrudd6 жыл бұрын
Thanks, after associate-level programming classes didn't cover the object-oriented paradigm, I have struggled for years (out of college, motivated by curiosity) to see through the mist that surrounded the subject. I found your video as I dive into VBA in an effort to make a primitive delivery/order-tracking database for work purposes... Your simple explanation of VBA syntax helped me finally see the object-oriented forest through the trees that have thus far obscured it. I'm making some assumptions here, but thanks.
@JadyGrudd6 жыл бұрын
And yeah, I mixed my metaphors.
@amberofiesh79666 жыл бұрын
I get what you mean, and I'm so happy to have helped you make the leap forward in object oriented programming! When this clicked for me it was a great moment as well.
@ezzat23846 жыл бұрын
Thanks alot it really helped!
@amberofiesh79666 жыл бұрын
I'm so happy to hear it helped! :)
@ExcelMadeEasy4446 жыл бұрын
Waiting for new upload.
@ExcelMadeEasy4446 жыл бұрын
Mam plz include link every video with practice workbook. Waiting for..
@amberofiesh79666 жыл бұрын
you can find the workbook on my webpage! go to thatsobasic.com
@ExcelMadeEasy4446 жыл бұрын
Keep it up !! Very Useful.
@ExcelMadeEasy4446 жыл бұрын
Plz give link such workbook for practice. thanx again.
@amberofiesh79666 жыл бұрын
You can find all the files that go with videos on my website thatsobasic.com/intro/