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

how to display only first and last record in a report

Status
Not open for further replies.

faisalsham

Programmer
Mar 11, 2005
18
0
0
US
I have a list of records, however I only want my report to display the first and last record on the report.
here is a sample of what I would like:

records
-------
A1001
A1002
A1003
A1004
A1005


To Be Displayed on the Report
-----------------------------

A1001 A1005


Thanks in advance.
 
Use two formulas:

//{@min}:
minimum({table.field})

//{@max}:
maximum({table.field})

-LB
 
Or actaully, just insert a minimum on the field, insert a maximum on the field, and then suppress the detail section.

-LB
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top