About 15,600,000 results
Open links in new tab
  1. Does the += operator just not exist in VBA? - Stack Overflow

    VBA is quite different from VB.net - VBA isn't so strict with type but then again VB.net isn't as strict as c#. I like them all - VBA seems limited but if you are playing with Excel then VBA is part of …

  2. Newest 'vba' Questions - Stack Overflow

    Visual Basic for Applications (VBA) is an event-driven programming language which was first introduced by Microsoft in 1993 to give Excel 5.0 a more robust object-oriented language for …

  3. Excel VBA Loop on columns - Stack Overflow

    Dec 21, 2012 · Excel VBA Loop on columns Asked 12 years, 11 months ago Modified 5 years ago Viewed 283k times

  4. types - What does the $ symbol do in VBA? - Stack Overflow

    What does the $ symbol do in VBA? Asked 15 years, 3 months ago Modified 6 years, 7 months ago Viewed 42k times

  5. Automating Edge Browser using VBA without downloading Selenium

    Jan 7, 2022 · 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 …

  6. vba - Run Time Error 5 - Invalid Procedure Call or Argument

    Looks like you might have an issue supplying a name to the table that is a fixed value. You are calling it PivotTable6 but that name is only available the first time you create the pivot. After …

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

    Dec 30, 2011 · I have a for loop over an array. What I want to do is test for a certain condition in the loop and skip to the next iteration if true: For i = LBound(Schedule, 1) To …

  8. vba - Excel UserForm displays at the wrong size - Stack Overflow

    Jul 26, 2018 · I'm having a very strange issue with Excel UserForms; when I display a form by clicking a command button in my worksheet, the size of the form warps significantly, making it …

  9. VBA, min/max ... or other mathematical functions

    Oct 8, 2018 · I googled a lot, but I want to be sure: Do I really need to use "Application.WorksheetFunction.Max" for the max-Function? If yes, can I shorten this? Is there …

  10. vba - "ThisWorksheet" equivalent? - Stack Overflow

    In Excel, I have some macros that are part of a Worksheet module. In the code, I want to make sure that the ranges referred to are part of that worksheet. For example, in my Main Sheet …