Skills and Automation
Skills and Automation
  • Видео 54
  • Просмотров 122 950
Excel VBA Master Class || Object Browser & Library || Lesson 2.4
Learn the architecture behind the Excel Object Model. The Object Library enables access to few libraries by default, including the Excel Object Library. And this library allows us to interact with the components in Excel.
We can even, interact with other Applications such as Outlook. We will learn to send an Outlook Email via Excel VBA.
And, let's check out how to navigate the Excel Object Library using the Object Browser.
#vba #excel
Follow the rest of the series, in the below playlist:
ruclips.net/p/PLgG3u13JJuEbguNAl0zbkq3mDCvy07v0Y
00:00 Intro
00:30 Object Library and References
07:10 Object Browser
10:00 IntelliSense stops working
Просмотров: 243

Видео

Excel VBA Master Class || Object Properties and Methods || Lesson 2.3
Просмотров 2352 месяца назад
Once we are able to Identify (or Reference) an Object in VBA, we are free to manipulate it by changing its characteristics (properties) or performing some action with it (methods). We will explore both these aspects in this video. We will also, cover how to manipulate multiple properties and/or methods for the same object using With Statements. #vba #excel Follow the rest of the series, in the ...
Excel VBA Master Class || Working with the Object Hierarchy || Lesson 2.2
Просмотров 3482 месяца назад
Deep-dive into using the Excel Object Model to locate which Object we want to manipulate. In this video, we will start by learning the formal way to reference any Object (using the Fully Qualified Reference). And then, we will look at shortcuts to reference the same object. These shortcuts include using the Global Object members such as: - ThisWorkbook - Active Objects - Using Workbooks, Worksh...
Excel VBA Master Class || Intro to Excel Objects (Theory Only) || Lesson 2.1
Просмотров 1782 месяца назад
The goal for automation through Excel VBA is to manipulate the various components of Excel. These components are called Objects, which are stacked within the Excel Object Model. In this video, we will learn what Objects are and how to use them. Topics covered in this lesson are: - Objects in Real Life Context - Objects in Excel VBA Context And we will cover the following key points: - Excel Obj...
Excel VBA Master Class || Saving Macros Files, Trust Center Settings, Locking Projects || Lesson 1.6
Просмотров 1662 месяца назад
What is the extension for saving a macro file? What are the settings for disabling macros when opening a Excel Macro file? Can we lock the macro code so that no one else can access it? We will answer all these questions in this video. Topics covered in this lesson are: Saving: - Using .xlsm and .xlsb file extensions. - Using Personal Macro Workbooks - Brief use case for Add Ins. Security: - Mac...
Excel VBA Master Class || Assign Macro to a Button || Lesson 1.5
Просмотров 872 месяца назад
Let's check out ways that we can make our macros accessible to the end user. We shouldn't expect the user to go into the VBA backend or even, into the Excel Run Macro menu-option to use our macros. We can make our macros available by: - Adding a Macro to a Form Button - Adding a Macro to the Quick Access Toolbar - Adding a Macro to a Picture, Shape or Icon #vba #excel Follow the rest of the ser...
Excel VBA Master Class || Developer Tab (Overview) || Lesson 1.4
Просмотров 772 месяца назад
Let's do an Overview of the Developer Tab in Excel, from the perspective of VBA development. We will learn how to enable the Developer Tab. It has 3 groups. - The Code Group gives access to mostly Recording Features and the Trust Center. - The Add-Ins group allows us to load add-ins. - The Controls Group gives us access to Form and ActiveX Controls. #vba #excel Follow the rest of the series, in...
Excel VBA Master Class || Customize the VB Editor || Lesson 1.3 (Part 3)
Просмотров 1632 месяца назад
As a VBA Developer, we will spend most of our time within the VB Editor. So, in this lesson, we will explore the options available to us to make our coding experience better. We will look at the: Editor Tab 1. Auto Syntax Check 2. Require Variable Declaration 3. Auto List Member 4. Auto Quick Info Options 5. Auto Data Tips 6. Auto Indent Setting 7. Drag and Drop Text Editing 8. Default to Full ...
Excel VBA Master Class || Learn to Write VBA Code || Lesson 1.3 (Part 2)
Просмотров 2352 месяца назад
The code that we enter into the VB editor follows certain rules and conventions. In this video, we will learn not only how to write code, but also: - how to follow the right syntax, - get help, - use the right naming conventions, - how to make our code readable. In additon, we will also, learn how to execute the compelte code in one go, and even, how to execute each line one-at-a-time. We will ...
Excel VBA Master Class || Navigate the VB Editor || Lesson 1.3 (Part 1)
Просмотров 1302 месяца назад
The VB editor is the coding environment where we write our lines of VBA code. But, before we start writing any code, let's take some time to learn to navigate our way through the VB editor. We will learn how to locate, identify, reposition and understand the use of various elements of the VB Editor such as the Menu, Toolbar, Project Explorer, Properties Window, Immediate Window and the Code Win...
Excel VBA Master Class || Record Macros || Lesson 1.2 || Automate Excel Tasks Without Writing Code
Просмотров 1842 месяца назад
Is it possible to automate basic tasks in Excel, without knowing how to code VBA? Yes. The Excel Macro Recorder allows us to record our mouse clicks and keystrokes and packages them into a macro. The Macro Recorder has a number of limitations. But, compared to the extra effort of learning a new coding language, the Macro Recorder is definitely an option worth checking out. In this lesson, - Lea...
Excel VBA Master Class || Hello World || Lesson 1.1 || Build your first macro
Просмотров 2373 месяца назад
Jump straight into the world of VBA by building a basic, automation task from start to end. No prior experience in VBA necessary. Task:- Display a message "Hello World" within Excel on the click of a button. In this lesson, we will - build a macro by writing code. - create a button in Excel and attach the macro to it. - and, save the file, so that you can use it again. #vba #excel Follow the re...
Excel VBA || Calling Subs and Functions || Parent - Child Architecture || Make your code smarter
Просмотров 3524 месяца назад
Learn HOW to Call Subs and Functions from your Current Sub. We will cover the Parent Sub - Child Sub Architecture that will guide you to organize your code and build scalable projects. Most of you might be used to working with Single Sub VBA macros, where the end-to-end flow is bundled into a Single Macro. In this video, we will learn how to distribute our code to different (child) subs and fun...
Excel VBA | Create a PowerPoint Slide Deck With Dynamic Commentary | USEFUL for Corporate Reporting
Просмотров 1,4 тыс.4 месяца назад
Create a FULL Corporate Style PowerPoint Slide Deck based on Tables and Charts from Excel using Excel VBA. Automate the repetitive task of creating routine slide desks every month. We will learn how to interact with PowerPoint and manipulate its slide from Excel using the PowerPoint Object library. Leverage the PowerPoint Slide Master to create Professional looking PowerPoint Slide Layout and t...
VBA Automation Project || Build a Worksheet to Control the Flow of a Macro || Lots of Tips & Tricks
Просмотров 1 тыс.5 месяцев назад
Learn how to control a macro from the Excel worksheet. In this video, we configure the Excel front-end i.e. a worksheet, from where we can control various elements of a reporting macro. The idea is to build this macro for a third-person user and give them the ability to: - input various details such as folder path to pick up file from - run the macro in individual steps or run in one flow - and...
Excel VBA Automation Project | Send Reports and Reconcile Responses | 2-Step Workflow
Просмотров 6516 месяцев назад
Excel VBA Automation Project | Send Reports and Reconcile Responses | 2-Step Workflow
Excel VBA | Lock & Unlock Excel Files, Sheets & Specific Areas within a Sheet | Basic Functionality
Просмотров 2636 месяцев назад
Excel VBA | Lock & Unlock Excel Files, Sheets & Specific Areas within a Sheet | Basic Functionality
A Practical Introduction to Using FIND Function in Excel VBA || Perform any kind of Lookups
Просмотров 6626 месяцев назад
A Practical Introduction to Using FIND Function in Excel VBA || Perform any kind of Lookups
Excel VBA || Transfer Dictionaries and Arrays through Functions || Make your code more manageable!
Просмотров 7816 месяцев назад
Excel VBA || Transfer Dictionaries and Arrays through Functions || Make your code more manageable!
Excel VBA || Select Data Range Except for Top Row || Range - CurrentRegion, Offset and Resize
Просмотров 6067 месяцев назад
Excel VBA || Select Data Range Except for Top Row || Range - CurrentRegion, Offset and Resize
Excel VBA || Split and Merge Files
Просмотров 2477 месяцев назад
Excel VBA || Split and Merge Files
Excel VBA | Two Ways to Download Attachments from Outlook Emails | Direct and Offline Version
Просмотров 2,3 тыс.7 месяцев назад
Excel VBA | Two Ways to Download Attachments from Outlook Emails | Direct and Offline Version
Using Arrays and Dictionaries Within Dictionaries (Nested) || Excel VBA || Advanced Dictionaries
Просмотров 2,2 тыс.9 месяцев назад
Using Arrays and Dictionaries Within Dictionaries (Nested) || Excel VBA || Advanced Dictionaries
Create and Send PDF Reports Using Excel VBA || Beginner - Intermediate Project || Uni Report Cards
Просмотров 1 тыс.9 месяцев назад
Create and Send PDF Reports Using Excel VBA || Beginner - Intermediate Project || Uni Report Cards
A Practical Introduction to Dynamic Arrays in Excel VBA || Manipulate data faster like a Pro
Просмотров 6 тыс.10 месяцев назад
A Practical Introduction to Dynamic Arrays in Excel VBA || Manipulate data faster like a Pro
VBA For Loop - Beginner's Guide to Using the For Loop | Learn to Loop over a Dataset | 6 Use Cases
Просмотров 1,2 тыс.11 месяцев назад
VBA For Loop - Beginner's Guide to Using the For Loop | Learn to Loop over a Dataset | 6 Use Cases
Excel VBA: Practical Guide to Finding Unique Values (Advanced Filter & Dictionaries)
Просмотров 1,2 тыс.11 месяцев назад
Excel VBA: Practical Guide to Finding Unique Values (Advanced Filter & Dictionaries)
Excel VBA: Automatically create a Large Dataset populated with Random Data | Build from scratch
Просмотров 437Год назад
Excel VBA: Automatically create a Large Dataset populated with Random Data | Build from scratch
[Q & A Response] Excel VBA: How to Cut/ Copy Row of Data Based on a Condition || Two Techniques
Просмотров 4,2 тыс.2 года назад
[Q & A Response] Excel VBA: How to Cut/ Copy Row of Data Based on a Condition || Two Techniques
[Q & A Response ]Excel VBA: How to Blank Out Row if a Cell in the Row is Blank || 3 Techniques
Просмотров 5992 года назад
[Q & A Response ]Excel VBA: How to Blank Out Row if a Cell in the Row is Blank || 3 Techniques

Комментарии

  • @npam1559
    @npam1559 25 дней назад

    Sir i need your help for create a cutting optimization program.

  • @pernicious92
    @pernicious92 29 дней назад

    Thanks for the Video. It was very helpful. Just as an fyi, you forgot a line in the first script. oAttach.SaveAsFile sAttachName

  • @chitaranjanbarik8787
    @chitaranjanbarik8787 Месяц назад

    Superbly talented sir, simple with zero level 100.

  • @ThabangTsotetsi-ll5wb
    @ThabangTsotetsi-ll5wb 2 месяца назад

    hello , I tried to add the wsOut.Cells.Clear into my code but it says"The Varible is not defined" what might be the poblem?

    • @SkillsandAutomation
      @SkillsandAutomation 2 месяца назад

      Hi, This code uses the Worksheet Code Name e.g. wsOut. If your code names don't match as per the video, the code will not run for you. I briefly mention the code name setup at the 04:29 mark. Cheers

  • @umesh6600
    @umesh6600 2 месяца назад

    thankyou sir ji for your effort teaching

  • @kasondekasondel2885
    @kasondekasondel2885 2 месяца назад

    thank you sir from Zimbabwe

  • @boredomkiller4531
    @boredomkiller4531 2 месяца назад

    Learning Vba is fun

  • @umesh6600
    @umesh6600 2 месяца назад

    great job..thanks for video

  • @jordan1499
    @jordan1499 2 месяца назад

    how could i configure this to work when the Outlook Extractor folder is located in one drive which i can access from my laptop?

    • @SkillsandAutomation
      @SkillsandAutomation 2 месяца назад

      I am not sure about OneDrive. OneDrive Personal on desktop should be fine. You can construct the Folder Path like this "C:\Users\<YourUsername>\OneDrive\<FolderPath>\", which works for me. Source -techcommunity.microsoft.com/t5/excel/excel-vba-to-refer-to-files-stored-on-onedrive-instead-of-local/m-p/3894487 But, if you don't have the desktop version, I think it becomes the same as SharePoint and iterating over folders may not be possible. Haven't worked with it to be sure.

  • @kasondekasondel2885
    @kasondekasondel2885 2 месяца назад

    Thank you from Zimbabwe

  • @osoriomatucurane9511
    @osoriomatucurane9511 2 месяца назад

    Awesome tutorial, concise and crystal clear walking us through the VBE settings right before diving into the coding. This is absolutely vital for the level where I am standing currently now and just relying mostly on youtube resources to crack the vba. Thank you Sir for your outstanding committment to share such valuable lessons.

  • @SkillsandAutomation
    @SkillsandAutomation 2 месяца назад

    Hi, If you want an overview of how this Master Class is going to shape up, you can check out the Pre-Course video: ruclips.net/video/Exv3tSJEr9w/видео.html

  • @SkillsandAutomation
    @SkillsandAutomation 2 месяца назад

    Hi, If you want an overview of how this Master Class is going to shape up, you can check out the Pre-Course video: ruclips.net/video/Exv3tSJEr9w/видео.html

  • @SkillsandAutomation
    @SkillsandAutomation 2 месяца назад

    Hi, If you want an overview of how this Master Class is going to shape up, you can check out the Pre-Course video: ruclips.net/video/Exv3tSJEr9w/видео.html

  • @umesh6600
    @umesh6600 3 месяца назад

    great information video

  • @SkillsandAutomation
    @SkillsandAutomation 3 месяца назад

    Hi, If you want an overview of how this Master Class is going to shape up, you can check out the Pre-Course video: ruclips.net/video/Exv3tSJEr9w/видео.html

  • @SkillsandAutomation
    @SkillsandAutomation 3 месяца назад

    Hi, If you want an overview of how this Master Class is going to shape up, you can check out the Pre-Course video: ruclips.net/video/Exv3tSJEr9w/видео.html

  • @ElGuerreroMaya
    @ElGuerreroMaya 3 месяца назад

    This video is critically underrated, good stuff

  • @alterchannel2501
    @alterchannel2501 3 месяца назад

    In the real world, nobody works with ranges anymore. We create tables for our data and use power query and power pivot. And still there are situations where vba is the only way to go. It would be interesting to watch a video using dynamic arrays in this scenario

  • @kumkumsaini5590
    @kumkumsaini5590 3 месяца назад

    Hello Sir, Have you posted any video on real scenerio project of excel VBA class modules?

    • @SkillsandAutomation
      @SkillsandAutomation 3 месяца назад

      Hi, Sorry. Not yet.

    • @kumkumsaini5590
      @kumkumsaini5590 3 месяца назад

      @@SkillsandAutomation Sir I am requesting you to make video on excel vba class module real world projects if possible. It will really helpful for us.

  • @biplabgupta374
    @biplabgupta374 3 месяца назад

    Hi, I am new to the VBA automation. I am working on a similar project where I need to add the sender Name, received time of email etc. along with the above attachments. Can you please help me with the code as to where should I add the code for sender Name, received time of email. Thanking you in advance. regards BG.

  • @aslklc9148
    @aslklc9148 3 месяца назад

    Hi, I want to ask you something. Is is applicable, can we paste data from excel to ppt chart? So that ppt chart will not be linked to excel...

    • @SkillsandAutomation
      @SkillsandAutomation 3 месяца назад

      Hi, Best (stable) options would be to paste as picture (ppPasteEnhancedMetafile, as in the video) or linked chart (ppPasteShape). But, if you want to paste as a Powerpoint chart or an unlinked chart, i will suggest you look into the "DataType:=ppPasteOLEObject" option. i haven't worked with this option before. i replaced it into the code for the video, it worked. Looks like copies of the original data are getting embedded into each powerpoint chart object, independent of the excel chart. maybe you can experiment further.

  • @kleinur5960
    @kleinur5960 3 месяца назад

    One of the most usefull video I have ever seen. Thank you.

  • @marshallmcluhan33
    @marshallmcluhan33 3 месяца назад

    This should make working with datasets easier 🤩

  • @kumkumsaini5590
    @kumkumsaini5590 3 месяца назад

    amazing explaination. Always learn something new deep and div from your videos.

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

    Amazing video Sir, you explained everything in this video with deep clarity. Understood each and everything. But sir On Error Resume Next and On Error GoTo 0 both are not cleared to me. Please make video only on these two errors sir.

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

      Hi, On Error Resume Next - Skips to the next line of code when an error occurs, while On Error GoTo 0 - Resets the Error Handler. Normally, you would use Resume Next, before the Line/ Lines you want to skip/ignore and GoTo 0 after the point from where you can want to resume normal error handling. As for a separate video, unfortunately, I won't have the bandwidth for it right now. Next, i am making a detailed vba master class series (beginner to pro) starting from mid - April onwards on RUclips. Error Handling will be covered in that, so don't want to release anything else before.

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

      @@SkillsandAutomation thank you sir, I will be waiting for your series

    • @kumkumsaini5590
      @kumkumsaini5590 3 месяца назад

      Hello Sir, Have you posted any real world project 's video on Excel VBA class module?

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

    Can you use VBA to take data from drop down box and filter it from a table dataset to populate anothe drop down next to it and so on?

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

      Hi, Do you mean creating dependent dropdown lists? Short answer, Yes. If that is all you want, you could achieve it using activeX combo boxes and populate the next combo box, based on change event of the first. If you wanted to achieve it without combo boxes, you could dynamically populate the second data validation list each time Range.Validation.Add xlValidateList, Formula1:=sComments -> where sComments is string of comma separated filtered values based on the selected value in previous list, and tie this macro to an event or button trigger.

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

      @@SkillsandAutomation Brilliant thanks, I think dynamically populate a second data validation list sounds good. I'll try and figure out how to do that. thanks

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

    Thanks a lot for sharing your knowledge. This is usually a big problem for me. Very explicit. Thanks again.

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

    Hi, in your first dynamic array example (6:00 - 6:54), wouldn't it be simpler to form your data into a named table? If it was a named table, all you need to do is load the named table into memory. Is that correct? Or am I missing something?

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

      Hi, Named table is definitely, one way to do it. But, I would say, it would apply when you are in control of the Input data source. However, dynamic arrays would have a more generic use-case. e.g. suppose you are picking up data from a csv file. or, from a excel file coming from a third party source, which doesn't have a table in it. Also, using tables would be a design choice e.g. do we want to maintain 100% logic within our VBA code, or do we want to share the logic with other Excel elements such as tables, formulas? what is the estimated size of data? is our data connected to another data sourcce such as SQL table? etc. Besides that, VBA is notorious for having alternative solutions to the same problem/ task. Hence, in my videos, I will tend to try and accomplish every task using the topic for the video i.e. in this case, dynamic array. Cheers

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

    great effort to teach us.thank you

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

    Nice Explained.

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

    Can we also add sender name and receive time of mail in this code?

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

      Hi. Yes. These are properties of the email object e.g. you can use oMail.SenderEmailAddress and oMail.ReceivedTime. There are heaps more properties available. You can check out the Microsoft Learn page for what's available. I will put the link in the description.

    • @biplabgupta374
      @biplabgupta374 3 месяца назад

      @@SkillsandAutomation Hi, I am new to the VBA automation. I am working on a similar project where I need to add the sender Name, received time of email etc. along with the above attachments. Can you please help me with the code as to where should I add the code for sender Name, received time of email. Thanking you in advance. regards BG.

    • @SkillsandAutomation
      @SkillsandAutomation 3 месяца назад

      @@biplabgupta374 Hi, I have added code to output sender Name, received time of email and count of attachments onto a worksheet. You can check it out on the blogpost for a similar video i have made skillsandautomation.com/useful-code/download-multiple-attachments-from-outlook/. Scroll down to the heading: Code to Output Details of Email and Save Attachments. Hope that helps.

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

    *promo sm*

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

    Sir , do you have a paid course on VBA , I will buy that right away !! Kindly suggest

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

      Hi, Thanks for your comment. No paid course. But, I will be releasing a detailed zero to hero VBA series on RUclips starting April 2024. Please check it out if it interests you.

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

    Super helpful! do you have a reference when the IN sheet header is on a different row? Example row 7 is the start of the header

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

      Hi, Do you mean you want to dynamically search for the starting header row? i.e. could be any row 2,3 etc.? i would suggest using the find method. i have a separate video that shows how to dynamically identify any dataset no matter where its placed in the sheet. code can be found here: skillsandautomation.com/how-to/how-to-find-last-row-in-excel-vba-using-find-method/#Example_1_Identify_and_Select_Data_Range

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

    Simply Brilliant!!

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

    can you start zero to hero vba master class series

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

      i am working on that in parallel. all going well, i will start releasing it in first week of april 24.

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

      sir ji bahut acha laga app suru karne ja rhe hai.intzar rahega.have a great day

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

    always waiting for video..thank y

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

    I want to add this macro to a button so I can use it only when I press the button, not automatically, how can I do this?

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

      Hi, If you want to attach a macro to a button, you would need to add a Form Control Button (Excel Ribbon -> Developer -> Insert -> Form Controls -> Button). I have a video explaining how to add a macro to a button. ruclips.net/video/iysBh7BLQXo/видео.html

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

    This was EXACTLY what I was looking for in my advanced filter schema. Thanks!

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

    please keep posting video like this video

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

    Thank you for posting this excellent project on request. I would request you to make videos on Error handlers seprately and Sub Proceesure as well where you pass parameters in sub procesure so that we can understand both topics deeply and clear our doubts. You are doing excellent job for beginners like me. God bless you.

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

      Thanks for your comment. Both Error Handling and Sub/ Functions are on my list of videos to make. I will try and release them within this month.

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

      @@SkillsandAutomation Hello Sir, Eagerly waiting for video on Error Handling and sub/functions

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

      Hi, It will be the next one. Will release it by this weekend.

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

      @@SkillsandAutomation Hello Sir, I hope you are well and healthy, sir waiting for your video on error handlers and sub processure where we use parameters in child sub to call parent sub. also on creating functions as well. Sir please explain all these topics with more clarity.

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

      Hi, working on it now. turned out longer than i expected, hence the delay. will release tomorrow.

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

    Hi, Can you please explain what is threshold with a real world example?

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

      Hi there, I didn't quite follow this question. Could you please provide more context? e.g. are you referring to something I have mentioned in this video or else are you checking regarding a different topic. Please elaborate. Thanks

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

    Thanks my friend. Very well explained.

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

    Hello! Download links for the code and macro file are in the description. These techniques will also, be used in an end-to-end workflow project. I will add that video link to the description, once it has been posted.

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

    Please share file for practice, I have watch your videos, you are explaining amazing, I want to do more practice on your code. I have seen best video on Excel VBA so far. Please share Files for practice as well.

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

      Hi, Thanks. I have uploaded the file to Github now. Link is in the description of this video. Cheers, Ash

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

    Please share file for practice, I have watch your videos, you are explaining amazing, I want to do more practice on your code. I have seen best video on Excel VBA so far. Please share Files for practice as well.

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

      Hi, Thanks. File can be downloaded from Github. Link is in the description of this video. Cheers, Ash

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

      @@SkillsandAutomation Thank you so much for your support. You are amazing trainer. I am requesting you to make a real scenerio project on Excel VBA where we configure a sheet to get value for whole automation rather than hardcoded so we can change value as per requirement from sheet not in coding.

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

      That's a good suggestion. I will work on it. Gimme a couple of weeks. Cheers

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

      @@SkillsandAutomation I am eagerly waiting for this project. Thank you so much.

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

    How to download the practice file ? I followed the link u provided on github but didn't allow to download the file ?

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

      Hi there, I tried the link and it was working for me. I have now, created a blog page with step-by-step instructions on how to download my macro files from Github. The link for this page has been added to the description of this video, just below the Github link. Hope that helps. Cheers, Ash