-
Say I have a simple query like
I want the groups to be ordered 1, 2, 3... null, but null is first, so they're displayed null, 1, 2, 3.... Is this ordering possible? Thanks! |
Beta Was this translation helpful? Give feedback.
Answered by
AB1908
Apr 5, 2022
Replies: 2 comments 5 replies
-
Edit:
|
Beta Was this translation helpful? Give feedback.
5 replies
Answer selected by
AB1908
-
Ah! That worked! Didn't know about that function. Thanks so much!
…On Thu, Apr 07, 2022 at 1:18 PM, AB1908 < ***@***.*** > wrote:
task where !completed
group by p
sort ldefault(p, "9999")
I think this does a better job of the initial idea.
—
Reply to this email directly, view it on GitHub (
#985 (reply in thread)
) , or unsubscribe (
https://github.com/notifications/unsubscribe-auth/AAA7YYRLG2OQK5VOSBJHOX3VD47H7ANCNFSM5STNCTFA
).
You are receiving this because you authored the thread. Message ID: <blacksmithgu/obsidian-dataview/repo-discussions/985/comments/2526451
@ github. com>
|
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
sort p
?Edit: