About 678,000 results
Open links in new tab
  1. types - What does the $ symbol do in VBA? - Stack Overflow

    What does the $ symbol do in VBA? Asked 15 years, 3 months ago Modified 6 years, 6 months ago Viewed 42k times

  2. vba - Detect whether Excel workbook is already open - Stack …

    Feb 21, 2012 · In VBA, I opened an MS Excel file named "myWork.XL" programmatically. Now I would like a code that can tell me about its status - whether it is open or not. I.e. something …

  3. Does VBA contain a comment block syntax? - Stack Overflow

    Apr 29, 2016 · Does VBA contain a comment block syntax? [duplicate] Asked 11 years, 5 months ago Modified 2 years, 10 months ago Viewed 217k times

  4. excel - How to use VBA to duplicate a sheet and then rename it …

    Jul 9, 2021 · How to use VBA to duplicate a sheet and then rename it (all in one sub)? Asked 4 years, 3 months ago Modified 1 year ago Viewed 8k times

  5. "Can't find Project or Library" for standard VBA functions

    So I'm having to run someone else's excel app on my PC, and I'm getting "Can't find Project or Library" on standard functions such as date, format, hex, mid, etc. Some research indicates …

  6. vba - Excel doesn't update value unless I hit Enter - Stack Overflow

    Jul 8, 2015 · I have a very annoying problem in one of my worksheets in a workbook. I am using EXCEL 2007. Any cell's value will not be updated unless I hit ENTER. Either if the formula in …

  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 parse JSON with VBA without external libraries?

    The first is to access fields in the array returned by your JSON parse, the second is to rename collections/fields (like sentences) away from VBA reserved names.

  9. Declaring variable workbook / Worksheet vba - Stack Overflow

    Sep 25, 2014 · VBA uses this code name to automatically declare a global-scope Worksheet object variable that your code gets to use anywhere to refer to that sheet, for free. In other …

  10. excel - Creating an Array from a Range in VBA - Stack Overflow

    Jun 8, 2016 · slicedArr = Application.WorksheetFunction.index(arr, 1, 0) 'If you set row_num or column_num to 0 (zero), Index returns the array of values for the entire column or row, …