Actually, let me change that a bit:
The command should read:
select table.name
from table
union
select 'null'
from table
Click on the create parameter column once you have selected the command.field to populate the picklist. Then, in report->selection formula->record, add:
(
(
(
{?Parameter}="Null" and
isnull({table.name})
) or
{table.name} = {?Parameter}
) or
(
{?Parameter}<>"Null" and
{table.name}={?Parameter}
)
)
-LB