adding new data to an excel worksheet

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

i have a worksheet which contains weekly data for some purchases. eash week i
get a spreadsheet with this weeks transactions. I would like to add the new
data to the exsisting data automatically. Is this possible?
 
I don't know your exact requirement, but it is possible,

for instance, piece of code, which is shown below will copy from one
location to another location, automatically,

=========================================
Sub Naveen()
lstrow = Cells.SpecialCells(xlLastCell).Row
Rows("1:" & lstrow).Copy
Rows(lstrow + 1).Insert Shift:=xlDown
End Sub
=========================================

Please post your exact requirement.

*** Please do rate ***
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top