For a record selection formula that excludes nulls and has the field > than a parameter value, you should be able to just use:
{table.field} > {?Value}
If you want to include nulls and values that meet the criterion, use:
isnull({table.field}) or
{table.field} > {?Value}
-LB