About 1,120,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. 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 !=? ...

  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. VBA: How to delete filtered rows in Excel? - Stack Overflow

    VBA: How to delete filtered rows in Excel? Asked 12 years, 1 month ago Modified 7 years, 7 months ago Viewed 247k times

  5. Excel VBA Loop on columns - Stack Overflow

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

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

  7. Combine multiple Excel workbooks into a single workbook

    Oct 20, 2014 · I am a novice at Visual Basic. I can use either Excel 2010 or Excel 2013 for this task. I have dozens of workbooks with data on the first worksheet of each. For example …

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

  9. Excel: How to check if a cell is empty with VBA? [duplicate]

    Closed 5 years ago. Via VBA how can I check if a cell is empty from another with specific information? For example: If A:A = "product special" And B:B is null Then C1 = "product …

  10. Meaning of .Cells (.Rows.Count,"A").End (xlUp).row

    Nov 21, 2014 · 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, …