I have a view selection formula
SELECT @If( @Date(@Now) = @Date(@Created); @All; @False)
and I want it to select all documents from the past 7 days rather than just today's.
SELECT @If( @Date(@Now) < @Date(@Adjust(@Created(), null, null, 7, null, null, null)); @All; @False)