
March 15, 2010 18:23 by
Create a string parameter with the options you want. eg. lastFullWeek, lastFullMonth, YearToDate, etc...
then add a switch statement in the record selection formula editor like below
{@Post Date} in
Switch
(
{?Period} = "Yesterday",
(currentdate - 1) To currentdate -1,
{?Period} = "LastWeek",
Minimum(LastFullWeek) To maximum(LastFullWeek),
{?Period} = "LastMonth",
Minimum(LastFullMonth) To maximum(LastFullMonth),
True, // provide default handling and specify a valid range
CDate(2009, 12, 30) To CDate(2009, 12, 30)
) and
47ed8bf2-0b75-4ddd-90b1-95bc27468d99|0|.0

March 14, 2010 12:20 by
| To keep all of the detail records for a group together on a page by checking the "Keep Group Together" box in the change group options window. This will force the group to start on the next page if all of the records can not be shown on the same page. |
38e25f0d-6665-48d1-b17a-87a025df1fc2|0|.0