About 1,690,000 results
Open links in new tab
  1. 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, 6 months ago Viewed 42k times

  2. VBA Run-time error '-2147467259 (80004005) - Stack Overflow

    Jul 1, 2015 · I am trying to connect to mysql using Excel VBA, I am using Excel 2013. I am new to VB, so i followed this example: Inserting Data Into MySQL From Excel Using VBA Here is my …

  3. Excel VBA Loop on columns - Stack Overflow

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

  4. 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 …

  5. 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 …

  6. 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

  7. Using "If cell contains" in VBA excel - Stack Overflow

    23 This will loop through all cells in a given range that you define ("RANGE TO SEARCH") and add dashes at the cell below using the Offset() method. As a best practice in VBA, you should …

  8. VBA (Excel): Find Based on Multiple Search Criteria Without Looping

    Dec 25, 2013 · But because one of the sorting columns contains dates, I had issues getting AutoFilter to work properly. My question is, how can I search through columns in Excel VBA …

  9. excel - Transpose a range in VBA - Stack Overflow

    Nov 1, 2012 · This gets you X and X' as variant arrays you can pass to another function. Dim X() As Variant Dim XT() As Variant X = ActiveSheet.Range("InRng").Value2 XT = …

  10. vba - How to add default signature in Outlook - Stack Overflow

    54 I am writing a VBA script in Access that creates and auto-populates a few dozen emails. It's been smooth coding so far, but I'm new to Outlook. After creating the mailitem object, how do I …