Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 1
Default Jump when copying a list of cells

I have a spreadsheet with a list of 40,000 account numbers. I can only handle
them in batches of 1000-3000 so I select cell 4000 and hold the mouse as I
scroll to 7000, then I hit copy. When I copy Excel jumps back to the first
selected cell. It's really tedious having to scroll through 3000 accounts
just to have to scroll through the same 3000 again to get to the next batch.

What can I do to stop the jump?
  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 457
Default Jump when copying a list of cells

Instead of all that clicking and scrolling, try this.

Press Ctrl+g, then input the range of cells you want.

Or, you can type the range of cells you want directly into the name box (the
box to the left of formula bar)

--
Best Regards,

Luke M
"brainslick" wrote in message
...
I have a spreadsheet with a list of 40,000 account numbers. I can only
handle
them in batches of 1000-3000 so I select cell 4000 and hold the mouse as I
scroll to 7000, then I hit copy. When I copy Excel jumps back to the first
selected cell. It's really tedious having to scroll through 3000 accounts
just to have to scroll through the same 3000 again to get to the next
batch.

What can I do to stop the jump?



  #3   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 1,522
Default Jump when copying a list of cells

Try this idea to see how it works. Then change 20 to 40000 and change 4 to
whatever desired

Sub jumpdown()
For i = 1 To 20 Step 4
Rows(i).Resize(4).Copy
MsgBox i
Next i
Application.CutCopyMode = False
End Sub

--
Don Guillett
Microsoft MVP Excel
SalesAid Software

"brainslick" wrote in message
...
I have a spreadsheet with a list of 40,000 account numbers. I can only
handle
them in batches of 1000-3000 so I select cell 4000 and hold the mouse as I
scroll to 7000, then I hit copy. When I copy Excel jumps back to the first
selected cell. It's really tedious having to scroll through 3000 accounts
just to have to scroll through the same 3000 again to get to the next
batch.

What can I do to stop the jump?


  #4   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 3,718
Default Jump when copying a list of cells

Let's say you want to select A1000:A3000.
In the name box type: A1000:A3000


"brainslick" wrote:

I have a spreadsheet with a list of 40,000 account numbers. I can only handle
them in batches of 1000-3000 so I select cell 4000 and hold the mouse as I
scroll to 7000, then I hit copy. When I copy Excel jumps back to the first
selected cell. It's really tedious having to scroll through 3000 accounts
just to have to scroll through the same 3000 again to get to the next batch.

What can I do to stop the jump?

Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Copying Cells in List infinite1013 Excel Discussion (Misc queries) 2 August 5th 08 08:01 PM
Copying different cells from one list to another Imabrit Excel Discussion (Misc queries) 3 July 9th 08 11:03 AM
JUMP TO PART OF A DROP DOWN LIST pjk@boro Excel Discussion (Misc queries) 3 October 25th 07 03:28 PM
Jump to Sheet Dropdown List Mike Excel Worksheet Functions 1 August 9th 05 09:59 PM
Quick Jump to end of list... Brian Excel Worksheet Functions 6 December 15th 04 10:51 PM


All times are GMT +1. The time now is 09:07 AM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"