About 11,000,000 results
Open links in new tab
  1. How can I speed up Excel VBA? - Stack Overflow

    Nov 3, 2017 · I have an excel file with a VBA code (Not written by me) How this code works is user enters a 6 digit number in a user form, the VBA then checks another sheet and if this 6 …

  2. In Excel, can I use a hyperlink to run vba macro?

    MsgBox "Write your Code here to be executed" Exit Sub End If End Sub In the Above Code we are comparing the Cell Address and then Executing a Set of Code or Function. There is …

  3. VBA Workbooks stop working with upgrade to Excel 365 - VBA …

    Sep 1, 2021 · Since upgrading to Excel 365, my company has been having all sorts of trouble with VBA-supported Excel workbooks crashing or not functioning properly. The issues have …

  4. Excel VBA - Delete empty rows - Stack Overflow

    Feb 21, 2012 · 2 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 …

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

    Feb 18, 2015 · 1 Alternative using VBA's Filter function As an innovative alternative to @schlebe 's recent answer, I tried to use the Filter function integrated in VBA, which allows to filter out a …

  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 find a value in an excel column by vba code Cells.Find

    Feb 18, 2013 · How to find a value in an excel column by vba code Cells.Find Asked 12 years, 9 months ago Modified 4 years, 5 months ago Viewed 782k times

  8. vba - How to wait until ActiveWorkbook.RefreshAll finishes before ...

    I simply want the rest of the code to wait until the refresh process finishes before executing the rest of the code. Right now I was only able to fix it by not calling on RefreshAll, which gives me …

  9. Extract Data from PDF and Add to Worksheet - Stack Overflow

    You may be interested in trying the commercial ByteScout PDF Extractor SDK that is specifically designed to extract data from PDF and it works from VBA. It is also capable of extracting data …

  10. How to do a "Save As" in vba code, saving my current Excel …

    I have an Excel Workbook that on form button click I want to save a copy of the workbook with the filename being the current date. I keep trying the the following ActiveWorkbook.SaveAs …