Excel.Tips.Net Welcome toExcel.Tips.Net

Helpful Links

Tips.Net Home
ExcelTips Home
Ask an Excel Question
Make a Comment

Tips.Net Store

ExcelTips FAQ
ExcelTips Premium

Learn Access Now
Free Printable Forms

Beauty Tips
Car Tips
Cleaning Tips
College Tips
Cooking Tips
Excel2007 Tips
ExcelTips
Family Tips
Gardening Tips
Health Tips
Home Tips
Legal Tips
Money Tips
Organizing Tips
Pest Tips
Pet Tips
Wedding Tips
Word2007 Tips
WordTips

Advertise on the
ExcelTips Site

Newest Tips

Making the Formula Bar Persistent

Engineering Calculations

Digital Signatures for Macros

Fixing the Decimal Point

Using Named Ranges in a Macro

Selecting Tabs in Dialog Boxes

Pulling Formulas from a Worksheet

 

Copying to Very Large Ranges

Summary: Using the mouse to select a large cell range can be frustratingly slow. If you want to make copying to a large range of cells a snap, you'll love the techniques in this tip. (This tip works with Microsoft Excel 97, Excel 2000, Excel 2002, Excel 2003, and Excel 2007.)

Chris wonders if there is a fast way to copy a cell to a very large range. He knows how to use the mouse to scroll in order to select the target range, but if he's copying to thousands (or tens of thousands) of cells, it takes an awfully long time to scroll through screen after screen.

Using the mouse to select large ranges of cells is cumbersome, at best. There are much easier ways to select large ranges, and these selection methods can be used to easily copy values to those large ranges.

Let's say that you have a value in cell A3 and you want to copy it to a large range, such as C3:C99999. (This range is obviously applicable only in Excel 2007. If you are using an older version you might want to copy to the range C3:C55000.) The easiest way to do the copy is to follow these steps:

  1. Select cell A3.
  2. Press Ctrl+C to copy its contents to the Clipboard.
  3. Click once in the Name box, above column A. (Before you click, the Name box contains "A3," which is the cell you just copied.)
  4. Type C3:C99999 or, if you prefer, C3:C55000 and press Enter. The range is selected.
  5. Press Ctrl+V.

Easy, huh? A similar approach to selecting large ranges could also be used with the Go To box, in this manner:

  1. Select cell A3.
  2. Press Ctrl+C to copy its contents to the Clipboard.
  3. Press F5 to display the Go To dialog box. (Click here to see a related figure.)
  4. In the Reference box type C3:C99999 or, if you prefer, C3:C55000.
  5. Click OK. The range is selected.
  6. Press Ctrl+V.

If you ever find yourself needing to copy to very large ranges using a macro, you can do so using a single command. To copy only the value from A3 to the range C3:55000, you would use the following:

Range("C3:C55000") = Range("A3").Value

If you instead wanted to copy both values and formats to the large range, then you could use this command:

Range("A3").Copy Destination:=Range("C3:C55000")

Regardless of how you perform your copying task, make sure you are patient. Depending on what you are copying, it can take quite a while for the operation to complete. If you are copying a formula to such a large range, then it can take very long as Excel performs the thousands of new calculations you've required of it.

ExcelTips is your source for cost-effective Microsoft Excel training. This tip (6778) applies to Microsoft Excel versions: 97 | 2000 | 2002 | 2003 | 2007

Make Home Buying Less Stressful! Why make home buying harder than it needs to be? Put your mind at ease—discover all the questions you need to ask to make the best buying decision.
 
Check out Buying a Home Checklist today!