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 […]