Use the Replace() function to turn your comma delimited values into a bullet list. So…
Specification ID, Alloy, Temper, Gauge, Lot Number
…turns into…
· Specification ID
· Alloy
· Temper
· Gauge
· Lot Number
strFields: Chr(183) & " " & Replace([sdFields],", ",Chr(13) & Chr(10) & Chr(183) & " ")
Note, sdFields is the Field in my table that has the comma delimited values. You will will need to change the name to match the field in your table.
556 total views, 1 views today