Using Formatter to Split Text and output by line item separated by “,”
This appears to be working perfectly it looks like this:
input:
1: [ ] 1x Item 1, [ ] 1x Item 2, [ ] 1x Item 3
output:
1:
1: [ ] 1x Item 1
2:
1: [ ] 1x Item 2
3:
1: [ ] 1x Item 3
Then I’m putting that output into a field in a rich text field in Airtable 'Create Record’.
This is where it’s adding the commas for some reason:
output:
[ ] 1x Item 1
,[ ] 1x Item 2
,[ ] 1x Item 3
Can anyone explain why it’s adding commas and how to get rid of them??? The ‘[ ]’ creates a check box in airtable but it only works if it is the beginning of a new line in the rich text field so the comma breaks it.