PDA

Click to See Complete Forum and Search --> : Staff Rota


gilly
Jul 4th, 2006, 10:25 AM
see attached excel sheet.

The staff rota changes once per week.

Week 1 is currently shown in the main table.(outlined in bold)

Week2 rota details are directly beneath. week 3 are further down.

How can i get excel to insert week2 details into the main table by clicking a button. For example i'd like the user to click on a button called "Week2" & then this would cut & paste the data for week2 into the main table..

MartinLiss
Jul 4th, 2006, 11:56 AM
Moved.

westconn1
Jul 5th, 2006, 06:09 AM
Range("D22:H26").Select
Selection.Copy
Range("D8").Select
ActiveSheet.Paste


this will copy and paste your data

pete