Hallo Reinhard,
habs selbst hinbekommen - hier der relevante Bsp-Code, wenns interessiert. Dank trotzdem.
Dim arr\_Fields() As Variant
Dim objNotes As Object, LNDB As Object, LNDoc As Object, LNView As Object
Set objNotes = GetObject("", "Notes.NotesSession")
If objNotes Is Nothing Then
Set objNotes = CreateObject("Notes.NotesSession")
End If
Set LNDB = objNotes.GetDatabase("#SERVER#", "#PFAD+ DATEINAME#")
Set LNView = LNDB.GetView("#ANSICHT#")
Call LNView.Refresh
Set LNDoc = LNView.GetFirstDocument
i = 1
'Felder der Datenbank - z. B.
arr\_Fields = Array("ID", "Status", "Modifier", "Modified")
For j = 0 To UBound(arr\_Fields)
Cells(i, j + 1).Value = arr\_Fields(j)
Next j
Do While Not LNDoc Is Nothing
i = i + 1
For j = 0 To UBound(arr\_Fields)
Cells(i, j + 1).Value = LNDoc.GetFirstItem(arr\_Fields(j)).Values
Next j
Set LNDoc = LNView.GetNextDocument(LNDoc)
Loop