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

CR XI - Selection formula to Limit to Max Date Records 1

Status
Not open for further replies.

pndMaster

IS-IT--Management
Mar 6, 2013
20
US
Hello

I have below data records and would like only to show the max date row records

ID SvcDate SvcName Provider ClientId
1 10/01/2015 TESTING ABC 123
2 11/20/2015 CBC XYS 123
3 12/1/2015 CHEM 7 ABC 245

Result should be below (only MAX SvcDate record)
ID SvcDate SvcName Provider ClientId
3 12/1/2015 CHEM 7 ABC 245

Appreciate the guidance

Regards
 
suppress the detail, sort by date, put all the data in the group footer
 
Another alternative would be to use a Group Selection Formula like this:

Code:
{Data.SvcDate} = Maximum({Data.SvcDate})

Hope this helps.



Cheers
Pete

 
I see you continue to just post questions without ever providing feedback to those who take the time to assist, notwithstanding a request from SkipVought in thread767-1757630 to acknowledge the helpful responses.

Don't be surprised if the people who usually help you suddenly stop making the effort.

 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top