About 57 results
Open links in new tab
  1. 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 !=? ...

  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 4 years, 11 months ago Viewed 283k times

  4. 怎么打开 vba 编辑器? - 知乎

    1 使用快捷键 启动 Excel,并打开您想要编辑 VBA 代码的工作簿。 按下 " ALT + F11 " 快捷键(如果你是使用笔记本电脑,可能需要按下三个键: Fn + Alt + F11),这样就能打开 VBA 代码编 …

  5. How should I make my VBA code compatible with 64-bit Windows?

    I have a VBA application developed in Excel 2007, and it contains the following code to allow access to the ShellExecute function from Shell32.dll: Private Declare Function ShellExecute …

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

  7. excel - Use of symbol # (hash) in VBA Macro - Stack Overflow

    Jun 5, 2012 · What is the meaning of the use of the # symbol in Excel VBA? It is used like this: a = b /100# I don't understand the significance of # after the 100?

  8. 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, 3 months ago Modified 4 years, 2 months ago Viewed 46k times

  9. excel - Cracking Sheet Password with VBA - Stack Overflow

    I found this VBA code to unlock sheets without knowing the password: Sub PasswordBreaker() Dim i As Integer, j As Integer, k As Integer Dim l As Integer, m As Integer, n As Integer Dim i1 As

  10. 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?