I have table article.
Article has column : content_sections
which is linked to other table article_sections
.
Article has column : ‘content_merged’ which is formula field:
join( “##” +
lookup(‘content_sections’,‘header’) + " \n" +
lookup(‘content_sections’,‘content’) ,
‘\n’)
The goal is to merge as above and generate content in markdown.
Is it possible right now ?