Questions tagged [obsidian-dataview]
A high-performance data index and query language over Markdown files for obisdian
9
questions
3
votes
0
answers
2k
views
How can I use a Dataview query in Obsidian to sum all values of YAML keys nested under a given parent key?
I'm using Obsidian daily notes to keep track of the time spent on various projects at work that fall under the categories of "research", "teaching", or "service". I'd ...
2
votes
1
answer
138
views
How to create progress bars in obsidian dataview
I want to create progress bars to see my advancements during the year in different topics along the year in Obsidian.
I've checked several options, like this tutorial, but don't seem clear to me:
...
2
votes
1
answer
532
views
Can a jQuery script be added to a dataviewjs snippet to change progress bar appearance?
I am running a dataviewjs snippet in a markdown file, specifically Obsidian, but I am not happy with the progess bar appearance, which uses green for 'barely started or bad' and red for 'finished or ...
2
votes
0
answers
486
views
Hierarchical list of MOC notes with dataview in Obsidian
I have a library of notes in Obsidian sorted in hierarchical MOCs that link to each other.
For example, I have a note called "MOC_Data" which has links to various other MOCs
Home
...
2
votes
0
answers
396
views
Can MomentJS be used fully in Obsidian Notes yaml?
According to MomentJS documentation, it is possible to capture "BC" dates: https://momentjs.com/docs/#/customization/eras/
However, Obsidian Notes can only seem to recognise them as negative ...
1
vote
1
answer
497
views
How do I show a list of notes in my Obsidian vault that do not include a tag name?
In my MOC pages, I would like to display a list of notes with tag1 & tag2, but not notes that contain tag3.
I use YAML frontmatter in my notes in Obsidian and include a property for tags i.e. tags:...
1
vote
2
answers
259
views
List in note block Obsidian
I wonder if its possible to create list in Obsidian note block this way
>[!note]- Annotation
> list should begin here
I tried starting list with '- ' syntax but it did no effect. Please help me ...
1
vote
0
answers
1k
views
How to sort grouped obsidian dataview tasks by modification time of the pages they are in
The code below finds and groups relevant tasks from my vault nicely, but the list is alphabetically ordered (by the name of the page in which the tasks are located.
dv.taskList(
dv.pages('-#...
0
votes
0
answers
4
views
How to produce a two-level group by in Obsidian using dataview
I store notes in Obsidian which have various properties, the frontmatter looks like this:
---
level_1: <l1 property value>
level_2: <l2 property value>
title: <note title>
---
I'd ...