I want to find documents within a certain date range. At present I use something like this
dc:>05-04-2023 dc:<16-04-2023
Is it possible to specify a starting date and followed by the duration of the subsequent period. So in my example above, the search syntax might be something like this:
dc:=05-04-2023 PLUS 7 days
Does something like this already exist in Everything?
Function syntax
function:value Equal to value.
function:<=value Less than or equal to value.
function:<value Less than value.
function:=value Equal to value.
function:>value Greater than value.
function:>=value Greater than or equal to value. function:start..end Is in the range of values from start to end.
function:start-end Is in the range of values from start to end.
So use .. or - to create a date range
This works too: dc:last25days..last18days
I am not aware of a syntax like the one you mentioned