It didn’t copy my code correctly but basically a break between each field.
Hi there! If I’m understanding correctly, you’ll want your code to look something like this…
"<a href=\\"" & {Instructors page Link} & "\\">" & {Name} & "</a>" & "\n" & {medium} & "\n" & {Date Range Friendly} & "\n" & {Time Slots} & "\n" & {Bottomline}
However… if you’re trying to eventually output this in HTML, which it appears you are… you’ll want to replace each "\n"
with "<br>"
. "\n"
will give you a line break in Airtable, whereas "<br>"
will give you a line break in HTML.
Hope this is helpful!
Hi there! If I’m understanding correctly, you’ll want your code to look something like this…
"<a href=\\"" & {Instructors page Link} & "\\">" & {Name} & "</a>" & "\n" & {medium} & "\n" & {Date Range Friendly} & "\n" & {Time Slots} & "\n" & {Bottomline}
However… if you’re trying to eventually output this in HTML, which it appears you are… you’ll want to replace each "\n"
with "<br>"
. "\n"
will give you a line break in Airtable, whereas "<br>"
will give you a line break in HTML.
Hope this is helpful!
not working do all fields have to be a text field or can they be multi-select?
not working do all fields have to be a text field or can they be multi-select?
The fields can be multi-select. It should return the options in a comma-separated list.
What exactly isn’t working? Is something displaying incorrectly?