I’d like to get data from view column which contains multiple values.( e.g : A, B, C in one column )
How can I use viewentry.columnvalues to distribute the elements in one column into each text field?
I’d like to get data from view column which contains multiple values.( e.g : A, B, C in one column )
How can I use viewentry.columnvalues to distribute the elements in one column into each text field?
Subject: Get elements from columnvalues
Have you tried with:
forall x in notesViewEntry.ColumnValues( col )
’ Calculate fieldName or define it in an array
Call doc.ReplaceItemValue ( fieldName, x )
End forall