"Formulas inherit values from selected document" - зло
Это же намного проще и быстрее, делать стандартными средствами. Почему зло? С точки зрения начинающего, менее проблематичнее, чем писать все на коде. Видь команда Compose намного меньше, чем код:
Sub Click(Source As Button)
Dim uidoc As NotesUIDocument
Dim NewDoc As NotesDocument
Dim ws As New NotesUIWorkspace
dim s as New NotesSession
'Set uidoc = ws.ComposeDocument("Elephant/ICTP","Work/Docs/performing.nsf", "NewAction")
'Set NewDoc = uidoc.Document
set NewDoc = s.CurrentDatabase.CreateDocument
call NewDoc.ReplaceItemValue("SomeItem", "SomeValue")
call NewDoc.ReplaceItemValue("SomeItem", someAnotherDoc.GetItemValue("AnotherItem"))
Call ws.EditDocument(True, NewDoc)
NewDoc.
End Sub