I have a multi-value field called Interviewers. I want to e-mail each interviewer in the field, but do not know how many there will be. I have it working w/ @functions, but would really like to dynamically build my list of “Sendto(interviewers(1-x))” I have read, tested, re-read, I know I am missing something simple- I thought I would count w/ ubound- but that is not working. Dim workspace As New NotesUIWorkspace
Dim uidoc As NotesUIDocument
Set uidoc = workspace.CurrentDocument
Dim doc As NotesDocument
Set doc=uidoc.Document
Dim xarray() As String
doc.interviewers =Xarray
Dim Mylist As Integer
mylist = Ubound(doc.Interviewers)