Written by Allen Wyatt (last updated May 4, 2026)
This tip applies to Excel 2007, 2010, 2013, 2016, 2019, and 2021
Henri would like to copy the data contained in a source cell to a destination cell without leaving the current position on the worksheet. In other words, he would like to copy from cell A1 to cell AE459 without leaving his current position at V104. He wonders if such an edit is even possible.
Of course, the obvious approach to this is to simply put the formula =A1 into cell AE459. Then, Excel takes care of making sure that the two cells are equal. You could also open a second window on the worksheet and take care of the copying within that window; the cell selected in the original window (cell V104) would remain unchanged.
If you actually want to do a "copy" operation, though, without opening a second window, then you'll need to resort to a macro.
Copying from one cell to another within a macro is rather easy. For instance, the following example will copy the contents of cell A1 to AE459 without affecting whatever cell you currently have selected:
Sub CopyCell1()
' Copy the cell value to destination cell
Range("AE459") = Range("A1")
End Sub
If you want to copy a formula that is in cell A1 to the destination, then you need to modify how the copy is done. Specifically, you need to use the Copy method using the destination range as a parameter.
Sub CopyCell2()
' Copy the relative formula to destination
Range("A1").Copy Range("AE459")
End Sub
Of course, a drawback of these macros is that they are static—they only copy from cell A1 to cell AE459. If your copying needs can vary, you may want to consider performing the task in the VB Editor's Immediate window. Just pop open the editor and type the single line from the appropriate macro into the window. The copying is then done and you can close the editor, all without affecting whatever cell you had selected.
Another way to provide a bit of flexibility into the source and destination for the macro is to have it (the macro) prompt the user for the source and destination. The following macro takes this approach.
Sub CopyCell3()
Dim SrceCell As String
Dim DestCell As String
SrceCell = InputBox("Copy From Cell ...")
DestCell = InputBox("Copy To Cell ...")
Range(DestCell) = Range(SrceCell)
End Sub
Note:
ExcelTips is your source for cost-effective Microsoft Excel training. This tip (9949) applies to Microsoft Excel 2007, 2010, 2013, 2016, 2019, and 2021.
Best-Selling VBA Tutorial for Beginners Take your Excel knowledge to the next level. With a little background in VBA programming, you can go well beyond basic spreadsheets and functions. Use macros to reduce errors, save time, and integrate with other Microsoft applications. Fully updated for the latest version of Office 365. Check out Microsoft 365 Excel VBA Programming For Dummies today!
If you copy a cell that contains a reference to external data, do you get an error? It could be due to the complexity of ...
Discover MoreIf you have a lot of text in your workbook, at some point you might want to split out sentences into individual cells. ...
Discover MoreWhen you import information originating in a different program, Excel may not do the best job at figuring out what ...
Discover MoreFREE SERVICE: Get tips like this every week in ExcelTips, a free productivity newsletter. Enter your address and click "Subscribe."
2026-05-04 15:32:17
jamies
Default is .Value
which can do modification of the data -
Looks like it could be a number - well float again !
Looks to be currency, or format of the source/destination set as currency -
Well (bankers ?) round to 2 decimal places and add the "$" character
then paste that as a text string -
AH no sumif() they are strings in the format "0.00" beginning with a "$" So - OK,=TEXT(.Value,"$0.00") , not numbers
Avoid that - be specific and use .Value2
looks like a date - that's a float them ! and format as a date ...
Got a version of Excel that uses the ribbon interface (Excel 2007 or later)? This site is for you! If you use an earlier version of Excel, visit our ExcelTips site focusing on the menu interface.
FREE SERVICE: Get tips like this every week in ExcelTips, a free productivity newsletter. Enter your address and click "Subscribe."
Copyright © 2026 Sharon Parq Associates, Inc.
Comments