-
I have my data structured in folders (even though I use tags). I want to make a table of all records in a folder. Sounds simple enough. It works if I want a table using tags, This works:
However for the life of me are several hours I can not see the data from folders. I either get errors or nothing returned. This is the closest I have been able to get: No error, but gives no results:
I also tried:
If I leave out the FROM "NZ-NewZealand" line, I get all 3200 notes listed. I'm sure the solution will be simple, really love a bit of help here please. |
Beta Was this translation helpful? Give feedback.
Replies: 9 comments 10 replies
-
Beta Was this translation helpful? Give feedback.
-
Next thought I had, maybe sub-folders have to be refferenced with a forward slash, so I tried: TABLE But still now data found. |
Beta Was this translation helpful? Give feedback.
-
Here is a shot of some of the notes in the sub-folder I'm trying to draw from..... |
Beta Was this translation helpful? Give feedback.
-
However with this code using tags to find the records (three records only given the tag of airport-nz,
I get the following result. |
Beta Was this translation helpful? Give feedback.
-
Thanks again for your help. Here is a onedrive share to my test obsidian
https://1drv.ms/u/s!AuyqYuplL3wAjpJr3E9GkY0ht7OoHg?e=AcTCbj
…On Mon, Jun 27, 2022 at 7:03 AM AB1908 ***@***.***> wrote:
Is obsidian-avs a folder inside your vault? If so, my apologies. Can you
send over a sample copy of your vault?
—
Reply to this email directly, view it on GitHub
<#1214 (reply in thread)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AQAKMTBZZP7QSVWBIRHQL4TVRDASHANCNFSM5Z3K65OA>
.
You are receiving this because you authored the thread.Message ID:
<blacksmithgu/obsidian-dataview/repo-discussions/1214/comments/3027463@
github.com>
|
Beta Was this translation helpful? Give feedback.
-
Well, as you say, that was simple. Didn’t even notice the case indifference. So that works after trying it in several other folders. Thank you. However, despite you saying that dataview works on iOS. When I run the same note on my iPad and change to view a dataview note, it stays in the metadata format. As per attached screenshot.
Cheers Anton
…On 1 Jul 2022, 22:22 +1000, AB1908 ***@***.***>, wrote:
This was simple, you had a capital L in there.
—
Reply to this email directly, view it on GitHub, or unsubscribe.
You are receiving this because you authored the thread.Message ID: ***@***.***>
|
Beta Was this translation helpful? Give feedback.
-
Never mind, I found AND works
Cheers Anton
…On 1 Jul 2022, 23:03 +1000, AB1908 ***@***.***>, wrote:
Can you try updating your Obsidian and Dataview to the latest versions?
—
Reply to this email directly, view it on GitHub, or unsubscribe.
You are receiving this because you authored the thread.Message ID: ***@***.***>
|
Beta Was this translation helpful? Give feedback.
-
I have a new query. The following works
```dataview
TABLE FROM #airport OR #AUu
SORT title asc
```
I want to use “TABLE FROM #airport AND #AUu”
That does not work, is it possible to return when both cases are met?
Cheers Anton
…On 1 Jul 2022, 23:03 +1000, AB1908 ***@***.***>, wrote:
Can you try updating your Obsidian and Dataview to the latest versions?
—
Reply to this email directly, view it on GitHub, or unsubscribe.
You are receiving this because you authored the thread.Message ID: ***@***.***>
|
Beta Was this translation helpful? Give feedback.
-
Nailed it again. I did have the latest version of Obsidian for iOS. I didn’t have the dataview pluging for iOS at all.
Second silly moment. Thank you for sticking with me. I am now a little more wiser about your plugin and plugins in general.
Cheers Anton
…On 1 Jul 2022, 23:03 +1000, AB1908 ***@***.***>, wrote:
Can you try updating your Obsidian and Dataview to the latest versions?
—
Reply to this email directly, view it on GitHub, or unsubscribe.
You are receiving this because you authored the thread.Message ID: ***@***.***>
|
Beta Was this translation helpful? Give feedback.
Next thought I had, maybe sub-folders have to be refferenced with a forward slash, so I tried:
TABLE
title AS "Title"
FROM obsidian/Airports/NZ-ZeaLand"
SORT title ASC
But still now data found.