About 20,500,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. #NAME? error in Excel for VBA Function - Stack Overflow

    Custom VBA Functions however require for a full recalculation of the workbook. Otherwise the functions return-value still is #NAME, as the calculation is only done directly after opening the …

  3. Get a worksheet name using Excel VBA - Stack Overflow

    I would like to create an user-defined function in Excel that can return the current worksheet. I could use the sheetname = ActiveSheet.Name But the problem with this is, it works and …

  4. How to add headers to a multicolumn listbox in an Excel userform …

    Is it possible to set up the headers in a multicolumn listbox without using a worksheet range as the source? The following uses an array of variants which is assigned to the list property of the l...

  5. Declare and Initialize String Array in VBA - Stack Overflow

    A Functional Approach Using the same solution as @matan_justme and @mark_e, I think the structure can be cleaned up a bit. Just as the built in function Array we can build our own …

  6. Filter Excel pivot table using VBA - Stack Overflow

    I have tried copying and pasting solutions from the internet forever now to try to filter a pivot table in Excel using VBA. The code below doesn't work. Sub FilterPivotTable() Application.

  7. excel - Get values from other sheet using VBA - Stack Overflow

    Get values from other sheet using VBA Asked 14 years, 11 months ago Modified 5 years, 3 months ago Viewed 573k times

  8. How to show current user name in a cell? - Stack Overflow

    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 simple as …

  9. VBA: How to delete filtered rows in Excel? - Stack Overflow

    19 I have an Excel table that contains some data. By using next vba code I'm trying to filter only blank cells in some fields and delete these rows

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

    See my solution based on UsedRange and VBA arrays to find the last cell with data in the given column -- it handles hidden rows, filters, blanks, does not modify the Find defaults and is quite …