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 strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Sort parameter

Status
Not open for further replies.

vshapiro

Programmer
Jan 2, 2003
211
US
I need to give user possibility to sort report by Provider name, Location, Project Type or All Project Types.

I created parameter SORT with then formula Sort which look like:
if {?Sort} = "Provider Name" then
{V_REPORTS_CALLIN.PROVIDER_NAME}
else
if {?Sort} = "Project Type" then
{V_REPORTS_CALLIN.PROJECT_TYPE_DESCRIPTION}
else
if {?Sort} = "Location" then
{V_REPORTS_CALLIN.FIELD_OFFICE_DESCRIPTION}

My question is:
When user select Project Type he can see only one particular project type. I need to let him select All Project Types. How can I do this??

Thank you
 
No, I did not do any more formulas. I Grouped by this formula, so I can change grouping by...
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top