Hi!
Here’s a code snippet:
```dataview
TABLE file.outlinks as "To"
FROM [[IF]]
Result:
I need to have a comma separated list in the “To” column: IF, ARRAY
How should I change the code?
Could you help me, please?
Hi!
Here’s a code snippet:
```dataview
TABLE file.outlinks as "To"
FROM [[IF]]
Result:
I need to have a comma separated list in the “To” column: IF, ARRAY
How should I change the code?
Could you help me, please?
Something like join(file.outlinks, ", ")
, you mean?
Thank you so much!!! This is exactly what I need!!!
TABLE join(file.outlinks, ", ") as "To"
FROM [[IF]]
Result:
This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.