It would help if I included the macro. Sorry about that.
Private Sub Worksheet_Change(ByVal Target As Range)
If Target.Count > 1 Then Exit Sub
If Target.Column > 1 Then Exit Sub
If Target.Row < 1 Then Exit Sub
If Target = "" Then Exit Sub
With Sheets(Cells(Target.Row, 1).Value)
Range(Cells(Target.Row, 1), Cells(Target.Row, 7)).Copy .Range("A" &
Rows.Count).End(xlUp).Offset(1)
End With
End Sub
Otto
> JR
> This sheet macro will do what you want. Note that everything between
[quoted text clipped - 34 lines]
>>>> Thanks for the help,
>>>> JR
bengaluru - 10 Jun 2005 22:23 GMT
Hello Otto.
If I understand correctly you would keep Sheet A as master and whatever
changes you make in Sheet A should reflect in the respective employee's
sheet... Right ? if this is what you want then threre is a very
simple way to do it.
Select your cell in the master list and Copy.
then go to the sheet where you want that information to appear and
instead of pasting it, click on Paste Special. This would take you to
a small box where at the bottom you would find a button Paste Link.
Click that and your information from the Master sheet is copied in the
other sheet. If you make any changes to the master sheet, this would
reflect in the other sheets.
Tell me if this is what you want and whether it works. Good Luck.

Signature
bengaluru
JR - 11 Jun 2005 14:55 GMT
Hello,
I tried it, but it does not seem to work. I need to be able to copy a single
row at one time, depending on the employees name that is in the first
column. Every other row may have a different employee. I know I will have to
has as many work sheets as employees.
Thanks JR
> It would help if I included the macro. Sorry about that.
> Private Sub Worksheet_Change(ByVal Target As Range)
[quoted text clipped - 46 lines]
>>>>> Thanks for the help,
>>>>> JR