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!

Assistance displaying multiple date selections in report header 1

Status
Not open for further replies.

nbpcman

Programmer
Aug 15, 2005
1
US
I have created a date selection parameter that allows the user to select one or multiple dates to filter records. I need to create a field with a formula to display all the selected dates in the report header. (The parameter is set up to allow multiples and is date only, not date/time.)
 
Try looking at this link, it should give you the answer you need


If you have trouble with the link try this formula

WhilePrintingRecords; Shared numberVar
counter;
display;

for counter := 1 to Count({?Parameter}) do ( display := display + ToText({?Parameter}[counter],0,"") + Chr(10); ); display;

HTH

-Steve
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top