What I’m trying to do
I want my lists and my tags displayed in a single bases cell, where I combine a string ("lists: ") with the list of items. In the green box below, I want to add "Lists: " before the list is displayed, and then "Tags: " in front of the list of tags.
What I’ve Tried
But whenever I use "lists: " + lists, I get `lists: [[2016 They Shoot Pictures Don’t they]],
Current formula:
[
[if(lists.isEmpty(), "", lists)],
[" "],
[if(file.tags.isEmpty(), "", file.tags)]
]
When I add the titles I want, using this code:
[
[if(lists.isEmpty(), "", "Lists: " + lists)],
[" "],
[if(file.tags.isEmpty(), "", "Tags: " + file.tags)]
]
I’ve tried a few other things, like putting the ‘titles’ outside of the square brackets, but the bracets aren’t the issue. Even just displaying "keywords: " + keywords in a cell will display the list as strings.





