About 53 results
Open links in new tab
  1. 第二课:Excel 中的 VBA:什么是 Visual Basic for Applications,如何使用

    VBA 是一种高级语言,您可以使用它来使 excel 屈服于您所有强大的意志。 VBA 实际上是 Visual Basic 6.0 BASIC 的一个子集,代表 B eginners A ll-Purpose S ymbolic I nstruction Code 。 为什么选择 …

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

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

  4. Newest 'vba' Questions - Stack Overflow

    4 days ago · 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 …

  5. 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 !=? ...

  6. vba - What does <> mean? - Stack Overflow

    I have seen this before in SQL and VB, I am now reverse engineering an Excel speadsheet and have come across the following formula: =IF(D23&lt;&gt;0,"Insufficent",0) I am converting it to ActionScr...

  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. Does VBA have Dictionary Structure? - Stack Overflow

    May 27, 2009 · 48 VBA does not have an internal implementation of a dictionary, but from VBA you can still use the dictionary object from MS Scripting Runtime Library.

  9. VBA vbscript regular expressions crashes - Stack Overflow

    Sep 8, 2025 · Not sure if this is related, but I note that in VBA, setting of a reference to Microsoft VBScript Regular Expressions 5.5 is no longer necessary. But it seems as if initiating the regex …

  10. Find last used cell in Excel VBA - Stack Overflow

    xlUp Leveraged vba method xlUp which was very fast, but skipped any rows that were hidden and only operated on one column. FIND VBA method that used Excel's APPLICATION method of find which …