How about this
Range("A1:A2").Select
Selection.Copy
Range("B1").Select
Selection.PasteSpecial Paste:=xlValues
Application.CutCopyMode = False
Hope it helps
Looks great, except that I have the following code that does not allow for that type of copying and pasting:
Private Sub worksheet_selectionchange(ByVal target As Range)
Application.CutCopyMode = False
Application.CellDragAndDrop = False
End Sub
Any other ideas? Thanks.
Alex
What about this, or is this out of the question too? (please work)
Dim nr1, nr2 As String
nr1 = Range("a1").Value
nr2 = Range("a2").Value
Range("b1").Value = nr1
Range("b2").Value = nr2
Hope it helps
This is great. Thank you so much! The only problem is that it is not just A1 and A2. Rather it is an array of A1:A500. I assume that this still works except that I need a shortcut code so that I won't have 500 lines of code. Thanks again.
Just use;
Range("B1:B500").Value = Range("A1:A500").Value
Ivan