Dataview TABLE, GROUP BY with headers

Things I have tried

This is where I am so far:

TABLE 
	rows.file.link,
	Stato
FROM
	"Università"
GROUP BY 
	Tipo

and this is what I get

“Tipo” is my Type i’m trying to group by. “Corso”, “Diario” are all Types.

What I’m trying to do

I’m trying to create a TABLE query in Dataview for my school notes where I group them by Type. I’d like to have a header for each group. I know you can achieve this in dataviewjs but I don’t know how and I’d like to stick with “normal” Dataview.
Basically I’d like each “Tipo” to not be in a column but to be displayed as a header. Like this:

Where the Months in the picture would be my “Tipo” field. So instead of having Jenuary, February, I’d like to have “Corso”, “Diario”…

At the beginning of every note I have something like this:
Tipo:: Corso
Stato:: Fatto

1 Like