View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
ward376 ward376 is offline
external usenet poster
 
Posts: 360
Default Lotus Notes get all the recipients

Never mind, I think I've got it. Suggestions welcome.

Dim sentList As Variant
Dim sentName As Variant
sentList = noDocument.GetItemValue("SendTo")
For Each sentName In sentList
'do stuff
Next sentName

Cliff Edwards