About 365,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 …

  2. vba - automation error -2146232576 (80131700) on creating an …

    Nov 16, 2016 · What are the bit level (32 or 64 bit) of the OS and of Excel on the non-working computer, and how do they compare to a PC where there's no error? Also compare your .NET …

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

  4. 请问 Excel 里面的 VBA 具体能做什么?有哪些实际的用途? - 知乎

    10、一键快速查询基金信息、基金净值 怎么样,比手工操作要强不止十倍、百倍吧~~~其实VBA能做的远远不止这些,上面的例子只是非常小的一部分。 但是如果能懂点VBA基础,并且能够 …

  5. What operator is <> in VBA - Stack Overflow

    Oct 21, 2012 · I was studying some vba code and came across this: If DblBalance &lt;&gt; 0 Then I can't figure out what operator this is, any help would be appreciated.

  6. How to do a "Save As" in vba code, saving my current Excel …

    I have an Excel Workbook that on form button click I want to save a copy of the workbook with the filename being the current date. I keep trying the the following ActiveWorkbook.SaveAs …

  7. 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 7 years, 11 months ago Modified 3 years, 10 months ago Viewed 43k times

  8. vba - How to break a long string into multiple lines - Stack Overflow

    Mar 31, 2023 · I'm using this insert statement in my code in VBA Excel, but I'm not able to break it into more than one line: SqlQueryString = &quot;Insert into Employee values(&quot; &amp; …

  9. vba - Efficient way to delete entire row if cell doesn't contain ...

    Jun 3, 2013 · You don't need a loop to do this. An autofilter is much more efficient. (similar to cursor vs. where clause in SQL) Autofilter all rows that don't contain "@" and then delete them …

  10. vba - Meaning of .Cells (.Rows.Count,"A").End (xlUp).row - Stack …

    Jul 9, 2018 · It is used to find the how many rows contain data in a worksheet that contains data in the column "A". The full usage is lastRowIndex = ws.Cells(ws.Rows.Count, "A").End(xlUp).row …