Help for novice user

DR RON

New Member
Joined
Feb 12, 2004
Messages
1
HI, I am a novice when it comes to excel. i will ask my question as simply as I can. I download data from a website into a worksheet say worksheet 1,
I use the data I want by transfering it to worksheet 2, and delete the stuff I dont want. For example the data in A1 in worksheet 1 I want transferred to C1 in worksheet 2, thatsthe easy part. now I refresh worksheet 1 with new data and want the new data in A1 to transfer into C2 in worksheet 2 and so on going down a line with each update. Can anyone help with this? I am sure there is an easy answer to it, however I;m not yet experienced enough to find it. Thanks from the doctor.
 

Excel Facts

Which came first: VisiCalc or Lotus 1-2-3?
Dan Bricklin and Bob Frankston debuted VisiCalc in 1979 as a Visible Calculator. Lotus 1-2-3 debuted in the early 1980's, from Mitch Kapor.
edited:
sorry about the blooper.

Sub findLast()

Range("C1").Select
ActiveCell.End(xlDown).Offset(1, 0).Select

End Sub

HTH
 
Upvote 0
forgot to mention - this will only find the first usused cell in C starting with row 1. not sure what else you want but it's a start
 
Upvote 0
Hi Doc, welcome to the MrExcel board.
Another approach would be this:

Sub CopyTest()
Sheets("Sheet1").Range("A1").Copy Sheets("Sheet2").Range("C65536").End(xlUp).Offset(1)
End Sub

This help?
Dan
 
Upvote 0
If column C has holes in it, and you wish to append data below the last used cell as opposed to starting with the 1st unused cell, you can use --

Dim LastRow as Long
...
LastRow=[C65536].End(3).Row + 1
' Cells(LastRow, 3) will reference the column C cell
...
 
Upvote 0

Forum statistics

Threads
1,214,832
Messages
6,121,847
Members
449,051
Latest member
excelquestion515

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top