About 831,000 results
Open links in new tab
  1. What operator is <> in VBA - Stack Overflow

    Apr 2, 2018 · 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.

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

  3. Excel VBA - Delete empty rows - Stack Overflow

    Feb 21, 2012 · I have another one for the case when you want to delete only rows which are complete empty, but not single empty cells. It also works outside of Excel e.g. on accessing …

  4. vba - Check if a string contains another string - Stack Overflow

    Feb 19, 2014 · I want to find if a string contains a ","(comma) in it. Do we have any other option other than reading char-by-char?

  5. excel - VBA - selecting a folder and referencing it as the path for a ...

    Aug 1, 2014 · VBA - selecting a folder and referencing it as the path for a separate code Asked 10 years, 10 months ago Modified 10 years, 10 months ago Viewed 20k times

  6. How to continue the code on the next line in VBA - Stack Overflow

    15 In VBA (and VB.NET) the line terminator (carriage return) is used to signal the end of a statement. To break long statements into several lines, you need to Use the line-continuation …

  7. How to create and write to a txt file using VBA - Stack Overflow

    Since most of the contents are repetitive in that file, only the hex values are changing, I want to make it a tool generated file. I want to write the c codes which are going to be printed in that …

  8. excel - How to Create a Pivot Table in VBA - Stack Overflow

    Nov 17, 2013 · I'm trying to create a Pivot table, but getting Invalid Procedure Call or Argument. ActiveWorkbook.PivotCaches.Create(SourceType:=xlDatabase, SourceData:="rng ...

  9. filter out multiple criteria using excel vba - Stack Overflow

    Feb 18, 2015 · filter out multiple criteria using excel vba Asked 10 years, 3 months ago Modified 8 months ago Viewed 396k times

  10. How to return a result from a VBA function - Stack Overflow

    When called within VBA the function will return a range object, but when called from a worksheet it will return just the value, so set test = Range("A1") is exactly equivalent to test = …