English Deutsch Français Italiano Español Português 繁體中文 Bahasa Indonesia Tiếng Việt ภาษาไทย
All categories

I know I could copy and past and use the drag and drop tool but I have pages of data and thats would take forever. I just want to write in to excel that I want the data in this box moved to that box. Thanks

2007-07-19 03:43:48 · 6 answers · asked by computerq 1 in Computers & Internet Software

6 answers

select the box you want it in, type =, then go back to the box that its in and select that. It should transfer the same info.

2007-07-19 03:51:34 · answer #1 · answered by Atom 4 · 0 0

The = function could be placed at the top of the destination column and then dragged down the column and the rest would show, too.

Besides the = function, you could also record a MACRO to do the move. Depending on the reletive location of the data and where it will be moved to, the macro could be modified to fit your needs. If the data that is to me moved will be done over and over, it would look like this:

Sub Macro2()
'
' Macro2 Macro
' Macro recorded 7/19/2007 by Dan
'

'
Range("A2:B3").Select
Selection.Cut
Range("E2").Select
ActiveSheet.Paste
End Sub
~~~~~~~~~~~~~~~~~~~~~
GOOD luck

2007-07-19 04:01:25 · answer #2 · answered by Dan Bueno 4 · 0 0

Cut all the data in one selection and paste it to the top left hand cell that you want it to go to. All the data will paste to that cell and to the right and bottom in the same format.

2007-07-19 03:52:47 · answer #3 · answered by Anonymous · 0 0

select the box you want it in, type =, then go back to the box that its in and select that. It should transfer the same info.

2007-07-19 03:49:13 · answer #4 · answered by brk 4 · 0 0

It can be done automatically with a macro.
Can't help with that. Maybe you can find a friend to build one.

2007-07-19 03:54:46 · answer #5 · answered by ed 7 · 0 0

cut and paste usually works

2007-07-19 03:51:46 · answer #6 · answered by C C 3 · 0 0

fedest.com, questions and answers