Another newbie question! What am I missing to make this show results only from the past 7 days instead of everything, which is what it does now
TABLE WITHOUT ID
file.link as Date,
choice(IF_hrs > 18, "✅", "❌") as IF,
choice(pushups > 1, "✅", "❌") as pushups,
reading as Reading
FROM "Daily Notes"
WHERE file.link > (date(now) - dur(7 days))
SORT file.day DESC