Hi Mikhail,
If you want to start the page without any items, you can remove the first part of filter from aggregate.
If you look in the picture I previously sent, I put an observation in red.
"If no date selected bring all , otherwise just the meetings with selected data"
The first part of the filter
Date = NullDate() do it.
If you remove this part only the meetings of the selected date will return :)
This practice is commonly known as curt circuit in filters.
It first check if the variable used to filter is empty, and if yes it don't evaluate the next condition that would be Meeting.Date = Date, this way every item in the table evaluates true and are returned, because the variable is empty.
Practical example:
in filter:
Date = NullDate() or Meeting.Date = Date.
- Case, the Date var is Null, the condition will be:
True or Meeting.Date = Date
Since the first part is True, it will not evaluate the second one, because the first already passed the test.
- Case, the Date var is 12-30-2020, the condition will be:
False or Meeting.Date = 12-30-2020
In this case only the objects with date 12-30-2020 will be returned from DB.
Let me know if the explanation was not very clear, and I try to improve it.
It is a little hard to explain.
Cheers and Regards,
RR :)