Hi,
das stellt eigentlich kein großes Problem dar. Ich versuchs mal aus dem Kopf
Dim session As New NotesSession
Dim ws As New NotesUIWorkspace
Dim dbA As NotesDatabase
Dim uidoc As NotesUIDocument
Dim docX As Notesdocument
Dim docY As NotesDocument
Dim view As NotesView
Set uidoc = ws.CurrentDocument
Set docY = uidoc.Document
Set dbA = New NotesDatabase("Server", "Datenbankname")
Set view = dbA.GetView("Ansichtenname")
Set docX = view.GetDocumentByKey("Suchschlüssel", True)
If docX is Nothing Then
Messagebox "Kein passendes Dokument gefunden"
Exit Sub
End If
docY.FeldnameZ = docX.FeldnameZ
Call docY.Save(True,True)
So in etwa müsste der Code aussehen. Du musst in allerdings noch an deine Feldnamen etc. anpassen. Ich hoffe das hilft dir weiter.
Axel