auto copy and past row to 1 of 7 pages

eric86vabeach

New Member
Joined
Jan 29, 2014
Messages
23
i would like this to happen copy the last row on master sheet then paste it to row that has same value as "A2" .... "A2" will be typed in as seen "mm/dd/yyyy"

if the name of sheet is "monday" it would only have dates that monday falls on in column "A"
ex.
"A"[TABLE="width: 75"]
<tbody>[TR]
[TD="align: right"]1/6/2014[/TD]
[/TR]
[TR]
[TD="align: right"]1/13/2014[/TD]
[/TR]
[TR]
[TD="align: right"]1/20/2014[/TD]
[/TR]
</tbody><colgroup><col></colgroup>[/TABLE]

and so on for sheet tue,wed,thur,friday,sat,sunday

this is what i have so far
Private Sub CommandButton1_Click()
Worksheets("Master").Range("A4:Af4").copy
Cells.Find(What:=Range("A2"), After:=ActiveCell, _
LookIn:=xlFormulas, LookAt:=xlPart, SearchOrder:=xlByRows, _
SearchDirection:=xlNext, MatchCase:=False, SearchFormat:=False).Activate
End Sub


so i think i need is a code to find the date on master sheet "A2" then find it on other sheet ... if ture then paste row next to date on other page that it found it on...
 

Excel Facts

Repeat Last Command
Pressing F4 adds dollar signs when editing a formula. When not editing, F4 repeats last command.

Forum statistics

Threads
1,223,231
Messages
6,170,884
Members
452,364
Latest member
springate

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