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

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

  2. Does the += operator just not exist in VBA? - Stack Overflow

    VBA is quite different from VB.net - VBA isn't so strict with type but then again VB.net isn't as strict as c#. I like them all - VBA seems limited but if you are playing with Excel then VBA is part of the …

  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

    5 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

    C-based and Java languages, on the other hand, do not store the length and have the '\0' (null) terminator to signal that the string ended. Because of that, getting the length in VBA is fast -- it's just …

  6. How to comment and uncomment blocks of code in the Office VBA …

    Apr 2, 2018 · In the VBA editor, go to View, Toolbars, Customise... or right click on the tool bar and select Customise... Under the Commands tab, select the Edit menu on the left. Then approximately …

  7. vba - Lock down Microsoft Excel macro - Stack Overflow

    Sep 9, 2016 · Protect/Lock Excel VBA Code: When we write VBA code it is often desired to have the VBA Macro code not visible to end-users. This is to protect your intellectual property and/or stop …

  8. 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 Lib "shell...

  9. Parsing JSON in Excel VBA - Stack Overflow

    Jul 8, 2011 · 87 I have the same issue as in Excel VBA: Parsed JSON Object Loop but cannot find any solution. My JSON has nested objects so suggested solution like VBJSON and vba-json do not work …

  10. 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, 6 months ago Modified 4 years, 5 months ago Viewed 48k times