Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Selecting all records even if they are null 1

Status
Not open for further replies.

redsand

Programmer
Aug 15, 2001
45
US
I am trying to use a parameter called {?ParamELO]} to select all records even if the field is null. I am not sure of the syntax to select all records("???"). Also can you use radio buttons or check boxes in parameters?

IIF ({?ParamELO} = "All",{QryRep.ELO} = "???",
{QryRep.ELO} = {?ParamELO})


One last item, other than using an active server page or crystal web report viewer to qualify your parameters, is there any other interface to qualify your parameters.


Any help would be greatly appreciated.

 
Try this:

If {?ParamELO}="All" then true else {QryRep.ELO}={?ParamELO}


Software Training and Support for Macola, Crystal Reports and Goldmine
251-621-8972
dgilsdorf@mchsi.com
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top