Pleas help me identify where I can make adjustments to this query to obtain bulleted points (query results are as expected other then the fact they are not bulleted)
TABLE WITHOUT ID rows.Lists.text As “My Topics”
FROM “Categorized”
WHERE file.lists
FLATTEN file.lists AS Lists
WHERE meta(Lists.section).subpath = “Summary”
GROUP BY file.link
@justdoitcc is right about the list items. I guess the issue is related with the theme (for example, I use Minimal and it removes the bullets in lists inside dataview tables columns).
As suggested by @holroy, if you don’t want the file.link, then you can use the LIST query. For the case you don’t need the group command. Try this:
LIST WITHOUT ID Lists.text
FROM "Categorized"
WHERE file.lists
FLATTEN file.lists AS Lists
WHERE meta(Lists.section).subpath = "Summary"
@mnvwvnm - your solution bailed me as usual. Thank you!!! (I was using the minimal theme; when I moved to the default theme, I saw bullets - but the new query worked in minimal mode as well.)
Even though I would like to select all helpful postings as the answer, the forum only allows for one. I value your assistance.
I am really grateful to all and cannot thank enough