About 1,010,000 results
Open links in new tab
  1. 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 connection code:

  2. What is the equivalent of "!=" in Excel VBA? - Stack Overflow

    The problem is that != does not work as a function in excel vba. I want to be able to use If strTest != "" Then instead of If strTest = "" Then Is there another approach to do this besides !=? ...

  3. VBA Runtime error '-2147221164 (80040154)': class not Registered

    Feb 24, 2021 · I developed a class library in Visual Studio 2019 using the .NET framework. Before building the project, I registered the.dll file to interop COM, and this process gave me a .tlb file. This class l...

  4. VBA: How to delete filtered rows in Excel? - Stack Overflow

    VBA: How to delete filtered rows in Excel? Asked 12 years, 1 month ago Modified 7 years, 8 months ago Viewed 247k times

  5. Excel VBA - Delete empty rows - Stack Overflow

    Feb 21, 2012 · It also works outside of Excel e.g. on accessing Excel by Access-VBA or VB6. Public Sub DeleteEmptyRows(Sheet As Excel.Worksheet) Dim Row As Range Dim Index As Long Dim Count As Long If Sheet Is Nothing Then Exit Sub ' We are iterating across a collection where we delete elements on the way.

  6. excel - How to use OR in if statement in VBA - Stack Overflow

    Jul 14, 2017 · How to use OR in if statement in VBA [duplicate] Asked 8 years ago Modified 3 years, 11 months ago Viewed 44k times

  7. 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 writing macros and automating the use of Excel.

  8. Excel VBA Loop on columns - Stack Overflow

    Dec 21, 2012 · Excel VBA Loop on columns Asked 12 years, 7 months ago Modified 4 years, 8 months ago Viewed 282k times

  9. How can I send an HTTP POST request to a server from Excel using …

    Oct 1, 2008 · What VBA code is required to perform an HTTP POST from an Excel spreadsheet?

  10. How to show current user name in a cell? - Stack Overflow

    Aug 3, 2011 · In most of the online resource I can find usually show me how to retrieve this information in VBA. Is there any direct way to get this information in a cell? For example as simple as =ENVIRON('Use...