Hello, I’m having an issue with grabbing all of the choices in a mult-value (checkbox) field. My code grabs the first value but not all of the values a user could choose separated by a comma.
MultiCompany = doc.GetItemValue(“Company”)
Forall m In MultiCompany
Call rt.AppendText(doc.Company(m))
End Forall
Thanks in advance for any help offered