About 1,170,000 results
Open links in new tab
  1. 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 …

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

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

  5. VBA: Selecting range by variables - Stack Overflow

    I want to select the formatted range of an Excel sheet. To define the last and first row I use the following functions: lastColumn = ActiveSheet.UsedRange.Column - 1 + …

  6. Excel VBA Loop on columns - Stack Overflow

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

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

  8. vba - Reference excel worksheet by name? - Stack Overflow

    Mar 9, 2012 · I have the name of a worksheet stored as a string in a variable. How do I perform some operation on this worksheet? I though I would do something like this: nameOfWorkSheet …

  9. excel - Filtering Column Based on Range VBA - Stack Overflow

    Jan 30, 2015 · The VBA code does not fail - it just does not filter properly based on the range. I feel certain that there exists a simple solution, but I cannot quite see it.

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