Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Anthony
 
Posts: n/a
Default specific data selection/pasting

Hi,
I want to select the last row of data entered from sheet1 (which is being
added to all the time) and paste certain bits of this into another sheet.
eg
copy the data from cells A1-A10 from sheet1 (being the last data entered)and
paste the data from cell A1 into cell F35 on a second sheet, the data from A2
onto D29 on the second sheet and so on.
Once all this data has been pasted onto the second sheet I then want to
print the final copy.
Can this be done using a macro, if so any ideas to the script??
thanks

  #2   Report Post  
 
Posts: n/a
Default

left us a little short the "and so on" part.
A1-A10 sound more like the first row or headers????
With ActiveSheet
lastrow = .Cells(Rows.Count, "A").End(xlUp).Row
sheet2.Range("f35").value = _
Range("A & lastrow").value
Sheet2.range("D29").value = _
range("A & lastrow").value
'and.so.on
end with

-----Original Message-----
Hi,
I want to select the last row of data entered from sheet1

(which is being
added to all the time) and paste certain bits of this

into another sheet.
eg
copy the data from cells A1-A10 from sheet1 (being the

last data entered)and
paste the data from cell A1 into cell F35 on a second

sheet, the data from A2
onto D29 on the second sheet and so on.
Once all this data has been pasted onto the second sheet

I then want to
print the final copy.
Can this be done using a macro, if so any ideas to the

script??
thanks

.

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
copy/print specific data Anthony Excel Worksheet Functions 3 January 26th 05 10:47 PM
Using VB, specific cell data into email subject andrew Excel Discussion (Misc queries) 1 January 26th 05 05:53 PM
Help with data not getting plotted Scott Ehrlich Charts and Charting in Excel 1 January 23rd 05 05:15 PM
Pulling data from 1 sheet to another Dave1155 Excel Worksheet Functions 1 January 12th 05 05:55 PM
How do I retrieve data (specific cells) from multiple worksheets on a shared drive jbean Excel Worksheet Functions 1 November 10th 04 09:26 PM


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

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

About Us

"It's about Microsoft Excel"