Normally, if I want to filter according to a range, for example according to a range of dates, I would write the code like the following:
rpt1.Report1.sql.Filter := ('[date]>=' + QuotedStr(Edit1.Text) + 'and [date]<=' + QuotedStr(Edit2.Text));
Now, what if I want to filter, for example, all...