Help with FLATTEN (DATOVIEW)

Hello everybody!

I need help with FLATTEN or GROUP BY, I can’t figure out how it should work.
I am trying to create a table with list of projects that has the current person in charge. The result is a table with many projects with the same names.

I want to combine all the same project names.

Can someone help me?

My code

```dataview
	table without id file.frontmatter.project as project
	from "/" and !"-=meta=-/templates"
	where file.frontmatter.type = "task"
	where file.frontmatter.person = this.file.name
	flatten file.frontmatter.project
	sort file.ctime desc

I had a similar question, albeit with a calculation involved, that a forum member was kind enough to help me with. Perhaps it could help?

This topic was automatically closed 90 days after the last reply. New replies are no longer allowed.