About 16,700,000 results
Open links in new tab
  1. 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 …

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

  3. 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 …

  4. 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 …

  5. 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 …

  6. How to find a value in an excel column by vba code Cells.Find

    Feb 18, 2013 · I have to find a value celda in an Excel sheet. I was using this vba code to find it:

  7. Excel VBA Run-time error '13' Type mismatch - Stack Overflow

    Jan 17, 2012 · My code do only data transfer from one file I opened previously to another and Sum it. My code stopped at the third SheetTab (So it went right for the 2 previous SheetTab …

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

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

    With ActiveWorkbook.Connections("XMLTable") .Name = "XMLTable" .Description = "" End With ActiveWorkbook.Connections("XMLTable").refresh The class ActiveWorkbook.Connections …

  10. Search a specific word in EXCEL using VBA - Stack Overflow

    Aug 3, 2015 · The following VBA code will iterate through the used cells in a given worksheet and find any that match the given criteria. At the end, a message box is displayed showing a list of …