Hi.
I think some of your questions have an answer in plugin documentation. (I don’t pretend to be “rude”
, just an extra information because sometimes people don’t know the plugins github pages and, in some cases, the respective support documentation)
https://blacksmithgu.github.io/obsidian-dataview/
About your last question, by default tables have as first column the “File” or “Group” (if using "Group by…). But you can change this. If you use something like this:
```dataview
TABLE WITHOUT ID field1, field2 AS "other title"
...
```
I.e, using the expression TABLE WITHOUT ID. (In lists: LIST WITHOUT ID)
One last point. By default the first column is a file link, not a file name. So, if you want to add as first column your field “Title”, this is a link or just a string? If just a string you lost the link to the “source” note. If you want to use the field “Title” (a string) as a link to your note, you need to use a function link(path, [display])… in your case:
```dataview
TABLE WITHOUT ID link(file.link, Title) AS "your column title", field2 ...
...
```