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

Sorting records based on data values

Status
Not open for further replies.

moopenguin32

Technical User
Dec 23, 2008
20
0
0
US
I want to sort a series of release records in our IT Service Management database by the Deployment Start Date. Unfortunately, this field is not always populated.

Is there a way to sort the data by the Deployment Start Date and if the field is null, sort it by another field, such as the Release ID?

The report currently contains two groups. The first one is by the Release Milestone and the second one is by the Deployment Start Date. The rest of the report is contained in the details section. There are not any sub-reports.

Thanks for your help with this.

"Remember, today is the tomorrow you worried about yesterday." - Dale Carnegie
 
create a formula and sort on it.
something like:

IF isnull({table.Field1}) or TRIM({table.Field1})=""
then {table.Field2}
else {table.Field1};

 
That'll work for what I'm trying to accomplish. Thanks!

"Remember, today is the tomorrow you worried about yesterday." - Dale Carnegie
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top