I’m exporting data to a pdf via Typeflow. One of the fields is a Link to multiple records, which happen to be street addresses. When I export the data to a pdf, the default view is to separate each linked record by a comma. I’m trying to create a line break instead of a comma.
I created a formula field with SUBSTITUTE(Addresses,”,”,”\n), however the street addresses contain commas, so this didn’t work.
Any ideas for another work around? Huge thanks in advance.
Current format:
Record 1, Record 2, Record 3
Desired format:
Record 1
Record 2
Record 3
etc