View Single Post
Old 05-16-2022, 04:59 PM   #2
theducks
Well trained by Cats
theducks ought to be getting tired of karma fortunes by now.theducks ought to be getting tired of karma fortunes by now.theducks ought to be getting tired of karma fortunes by now.theducks ought to be getting tired of karma fortunes by now.theducks ought to be getting tired of karma fortunes by now.theducks ought to be getting tired of karma fortunes by now.theducks ought to be getting tired of karma fortunes by now.theducks ought to be getting tired of karma fortunes by now.theducks ought to be getting tired of karma fortunes by now.theducks ought to be getting tired of karma fortunes by now.theducks ought to be getting tired of karma fortunes by now.
 
theducks's Avatar
 
Posts: 31,094
Karma: 60358908
Join Date: Aug 2009
Location: The Central Coast of California
Device: Kobo Libra2,Kobo Aura2v1, K4NT(Fixed: New Bat.), Galaxy Tab A
You used a text field so standard date ranges will not work
example for 2015-2016

Code:
#review:first read\,>=\d\d \d\d 2015 and #review:first read\,<= \d\d \d\d 2016
Note the text

So you need the field name: #review:
you need the words with comma: first read\,
you need wild cards for all non critical digits \d\d\s\d\d\s
then the actual 4 digit year

Another way for the year part if consecutive
Code:
#review:first read\,>=\d\d \d\d 201[5-6]
theducks is offline   Reply With Quote