Things I have tried
Searching google, these forums, dataview github issues etc. Can’t find a mention of anything similar anywhere.
What I’m trying to do
I have this large table:
And it’s great! However, it’s not showing all the entries, only about 2/3 of the ones I expect.
I have this list to keep track of which ones are there and which are not:
[ ] Antstorm
[ ] Applestem
[ ] Ashflower
[x] Barkpaw.
[x] Birch.
[ ] Blackjack
[ ] Blackwing
[x] Blossomstar
[x] Cedarpelt
[ ] Cherryflame
[x] Cinderkit
[x] Cinders
[ ] Cloudheart.
[x] Dawnstrike
[ ] Fallenblaze
[ ] Firewhisker
[x] Fishkit.
[ ] Flamepool
[x] Flowerpaw
[x] Foxwhisker
[x] Goldenpaw
[x] Greyfrost
[x] Hatchbelly
[x] Hazelkit
[x] Holly
[ ] Kestrelsky
[ ] Lakespring
[x] Leafkit
[x] Leopardtail
[x] Lionfrost
[x] Littlepaw
[ ] Logpelt
[x] Marshpelt
[x] Mottlespots
[x] Mouseclaw
[x] Mouseslip
[x] Muffin
[ ] Nightpaw
[ ] Oakkit
[x] Orchid
[ ] Petalkit
[x] Petalwhisker
[ ] Plumbird
[ ] Rainstar
[ ] Ravenpaw
[ ] Ripplewater
[x] River.
[x] Robin
[x] Rosepaw
[x] Rowaneye
[ ] Sandpaw
[ ] Shadow.
[ ] Shimmerpaw
[x] Shrewstar
[x] Silverkit.
[x] Silvernose
[x] Snakepaw
[x] Specklepaw
[ ] Spiderflower
[x] Splash
[x] Spottednose
[x] Stormkit
[x] Sunstar
[x] Tallhawk
[ ] Tansydapple
[x] Vixenlight
The table was generated with this dataview query:
TABLE description as Description,
!dead as Alive,
link(regexreplace(allegiance, "#allegiances/(\w+)", "$1")) as Allegiance,
rank as Rank,
mother as Mother,
father as Father,
choice(length(siblings), string(siblings), null) as Siblings,
mate as Mate,
choice(length(kits), string(kits), null) as Kits,
mentor as Mentor,
apprentice as Apprentice
FROM "002 Projects/The Storm Underneath/Cats"
WHERE file.name != this.file.name and !contains(file.path, "999 Templates")
SORT file.name
The list was with the same, just without all the table jargon. There doesn’t seem to be any clear reason or order to them being omitted. Although, a lot more of the omitted notes link to uncreated notes, but not all of them do and not all of the ones that do that are being omitted, so I don’t think it’s related.