Good evening everyone,
I actually need two things, one is a question and one is help on a vb code:

Question: Is it possible to transfer information when running a VB code to do the following (without opening the other workbook):

If 'yes' is selected from column ? then transfer this information to workbook "location on computer/name of file.xls.

I have the following code but would need to transfer the info to the other workbook

If Not Intersect(Target, Range("X:X")) Is Nothing And Target.Cells.Count = 1 Then
Application.EnableEvents = False
        
If LCase(Trim(Target.Value)) = "yes" Then
With Range("A" & Target.Row)
Sheets("Archives").Cells(Rows.Count, "A").End(xlUp).Offset(1, 0).Resize(, 18).Value = .Resize(, 18).Value
.Resize(, 24).ClearContents
End With
End If
I need to change the "Archives" to "C:\Documents and Settings\"name"\My Documents\Master Template.xls

Is this possible?

The "Master Template.xls" will have only one sheet named "Archives"