LinkBack Thread Tools Search this Thread Display Modes
Prev Previous Post   Next Post Next
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 2
Default Looping and copying from a list

Hi,

I need a fresh pair of eyes so hopefully someone can help....

I have a list of data and what I want to do is copy the values in coloumn A
pasting them in cell D4 (other actions area then performed). I have been
trying to use the active cell method but the problem I have is that when I
paste the value in D4 this then becomes the active cell......

Is there any way to right the value of Active cell to a varianble and the
call that variable after pasting?
Or would I be better off trying to use numbers to reference the cells.....

I've tried both approaches and have used the following code without much
success....Any suggestions..

Using the ActiveCell method...............

Sub CycleList()
Dim Cellstore As Integer
Dim lRow As Long

'error trap
On Error GoTo Etrap

Worksheets("CODES").Range("A6").Activate

Do While IsEmpty(ActiveCell.Offset(0, 1)) = False

ActiveCell.Select
Selection.Copy
Cellstore = ActiveCell.Address
Range("D2").Select
ActiveSheet.Paste
Range(ActiveCell.Address).Select

Loop

Etrap:

Beep

Exit Sub

End Sub


Using the Number method...............

Sub CycleListNumeric()
'error trap
On Error GoTo Etrap

Number = 6
Do
Range("A,Number").Select
Selection.Copy
Range(D4).Select
ActiveSheet.Paste
Number = Number + 1
Loop Until Number = 15

Etrap:

Beep

Exit Sub

End Sub

--
Message posted via OfficeKB.com
http://www.officekb.com/Uwe/Forums.a...mming/200704/1

 
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
looping and copying Juuljus Excel Programming 2 December 8th 05 02:05 PM
Looping through my worksheet and copying cells a94andwi[_5_] Excel Programming 5 August 17th 05 12:45 AM
looping and copying from onesheet to othersheet Lolly[_2_] Excel Programming 0 August 22nd 04 03:07 PM
Looping down list and each time copying to another worksheet mattri Excel Programming 2 February 16th 04 06:26 PM
Looping down list and each time copying to another worksheet Matthew Richards Excel Programming 0 February 16th 04 04:58 PM


All times are GMT +1. The time now is 03:57 PM.

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"