I have a daily log where I jot down notes in various logs, such as gaming, using inline tags. For example:
GamingLog:: [[SomeGame]] - Did cool stuff
Sometimes though, I don’t jot down notes, just an internal link to whatever game I played
GamingLog:: [[AnotherGame]]
I’m trying to tweak a dataview I found to reflect both in-line entries based on the file date and the contents of whatever notes I jotted down.
Dataview I’m using is as follows:
table without id file.link as "Date", GamingLog as "Log" from "Journal" where contains(GamingLog, "") sort file.name desc
The resulting table works great for any entries that have something beyond just a link for my note. In the above example, I would get the following result:
Date Log
2023-01-01 [[SomeGame]] - Did Cool Stuff
I’m missing the entry that only has a link and no additional text. What I’m hoping to get out of the dataview would be this:
Date Log
2023-01-02 [[AnotherGame]]
2023-01-01 [[SomeGame]] - Did Cool Stuff
Possible to have dataview provide a table entry where the only information after an in-line tag is just a link? Was also considering replacing the in-link tag with an actual #tag/gaming, but on days where I have multiple log entries, the above dataview code drops everything nice and neat with bullet points as a result. Thanks!