Cd.K
I am not exactly sure of your request however I will assume you want to list tiddlers with a created date between
01.09.2019 to 15.09.2019
When you transclude the created and modified dates like this
Tiddlywiki intervieins to display it in a data format.
You can see this using
<$text text={{!!created}}/>
eg
20190919063745877
So since the values in a date go from most significant years, to least significant milliseconds it is a number that can be used for comparisons.
Yes there are numbers that are not valid like the 99th of a month but they remain in sequence.
So in your example you need only test if the prefix YYYYMMDD is between 20190901 and 20190915
The reveal widget contains a test for greater than and less than.
However in your example you also have a range that could be expressed with the days[-14] operator on the 20190915 second date or days[+14] on the first.
I will leave the balance of this issue to you or another contributor.
Regards
Tony