I am trying to have an area on a form for easy reference to similar forms. I was thinking of doing this with an embedded view. However, I can’t figure out how to change the SelectionFormula for the embedded view. All I really am doing is changing the SelectionFormula from “Select Form = formName” to “Select Form = formName & PartNumber = partnumberCurrentlyOnForm”. What I have currently is: Dim view As NotesView
Dim selStr As String
Dim pn As String
Dim session As New NotesSession
Dim workspace As New NotesUIWorkspace
Dim db As NotesDatabase
Set db = session.CurrentDatabase
Dim doc As NotesDocument
Set doc = workspace.CurrentDocument.Document
Dim field As Variant
field = doc.PartNumber
pn = field(0)
selStr = "SELECT Form=""PBR"" & PartNumber="""+pn+""""
Set view = db.GetView("Lookup\embeddedPartLink")
view.SelectionFormula = selStr
Messagebox view.SelectionFormula
Call view.Refresh
view.AutoUpdate = True
Call view.Refresh
The messagebox is giving the correct select statement, but my view is not refreshing/changing.
Or is there any other way to put a list of document links or what have you on my form that is dynamically created from a field value?