About 50 results
Open links in new tab
  1. 3 Ways to Copy and Paste Cells with VBA Macros + Video - Excel …

    Jul 1, 2015 · Learn 3 different ways to copy and paste cells or ranges in Excel with VBA Macros. 3-part video tutorial series. Download the file with VBA code examples.

  2. How to Use VBA Macros to Copy Data to Another Workbook

    Jan 9, 2019 · Bottom Line: Learn how to use VBA macros to copy & paste data from one Excel workbook to another, including adding data to the bottom of an existing range or replacing data. Skill Level: Intermediate. Video Tutorial

  3. How to Copy or Import VBA Code to Another Workbook

    Oct 11, 2018 · Getting VBA code into your workbooks can be done in four different ways. All of these are are quick and easy to implement. Option 1 – Copy and Paste VBA Code. The first option is simply to copy the code from whatever source you are taking it from and then paste it into the VB Editor.

  4. How to Avoid the Select Method in VBA & Why - Excel Campus

    Jun 2, 2016 · We don't need to select any sheets or ranges for this simple copy and paste action. The following macro accomplishes the same task without the Select method, and only requires one line of code. Sub Simple_Copy_Paste() Sheets("Sheet1").Range("B2:B8").Copy Sheets("Sheet2").Range("B2") End Sub Checkout my article and video series on 3 …

  5. The Ultimate Guide to Excel Filters with VBA Macros - Excel Campus

    Jul 13, 2018 · Especially when we are applying filters to multiple columns on large worksheets, or filtering data to then copy/paste it to other worksheets or workbooks. This article explains how to create macros to automate the filtering process.

  6. VBA Tutorial: Find the Last Row, Column, or Cell on a Sheet - Excel …

    May 11, 2015 · Learn 3 VBA methods to find the last row, column, or cell in a worksheet. The layout of your data and blank cells will determine which method to use.

  7. 3 Ways to Remove Duplicates to Create a List of Unique Values in …

    Oct 19, 2017 · Another option for removing duplicates is using the Advanced Filter. This is a tool that is built into Excel and located on the Data tab of the ribbon. Advanced Filter has a checkbox labeled “Unique records only” that will remove duplicates and …

  8. How to Filter for Dates with VBA Macros in Excel

    Jul 12, 2018 · The Excel file that contains the code can be downloaded below. This file contains code for filtering different data types and filter types. Please see my article on The Ultimate Guide to AutoFilters in VBA for more details.

  9. How To CONCATENATE a Range of Cells + VBA Macro - Excel …

    Oct 24, 2014 · Learn two different ways to quickly (join) concatenate a range of cells. This includes the Ctrl+left-click method, and a free VBA Macro. Download guide

  10. VBA Macro to Delete Rows Based on Cell Values - Excel Campus

    Jan 17, 2019 · Learn how to use VBA macros to delete rows based on cell values or conditions in Excel. Includes sample code and video tutorial.

Refresh