About 726,000 results
Open links in new tab
  1. How to comment and uncomment blocks of code in the Office …

    Oct 17, 2012 · In the VBA editor of Office (ALT + F11), how do you comment or uncomment a block of code?

  2. Automating Edge Browser using VBA without downloading Selenium

    Apr 10, 2024 · The advantage of this method is that it allows VBA to interact directly with Edge without IE mode and also with Chrome. Automate Chrome / Edge using VBA via CDP - Code …

  3. VBA - how to conditionally skip a for loop iteration

    Dec 30, 2011 · VBA does not have a Continue or any other equivalent keyword to immediately jump to the next loop iteration. I would suggest a judicious use of Goto as a workaround, …

  4. VBA to copy a file from one directory to another - Stack Overflow

    I have an access file that I regularly need to copy to another directory, replacing the last version. I would like to use an Excel macro to achieve this, and would also like to rename the file in the

  5. vba - Detect whether Excel workbook is already open - Stack …

    Feb 21, 2012 · In VBA, I opened an MS Excel file named "myWork.XL" programmatically. Now I would like a code that can tell me about its status - whether it is open or not. I.e. something …

  6. excel - How to use VBA to duplicate a sheet and then rename it …

    Jul 9, 2021 · How to use VBA to duplicate a sheet and then rename it (all in one sub)? Asked 4 years, 3 months ago Modified 1 year ago Viewed 8k times

  7. How Do I Convert an Integer to a String in Excel VBA?

    Jul 21, 2012 · How do I convert the integer value "45" into the string value "45" in Excel VBA?

  8. Get list of Excel files in a folder using VBA - Stack Overflow

    Dir Function: VBA: Dir Function FileSystemObject: VBA: FileSystemObject - Files Collection They each have their own strengths and weaknesses. Dir Function The Dir Function is a built-in, …

  9. excel - Declare and use range in vba - Stack Overflow

    Dec 10, 2014 · I am quite new to VBA, Today developing a macro I noticed something funny. Using Range like this is working : Dim rg As Range Set rg = ActiveSheet.Range("A1:B2") …

  10. VBA + Excel + Try Catch - Stack Overflow

    VBA will allow you to adhoc use variables, but its difficult to maintain if you do that. Add to the beginning of your code, right after version dim URL as string dim objHTTP as object