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!

Date formatting in page layout

Status
Not open for further replies.

t16turbo

Programmer
Mar 22, 2005
315
GB
hi, I have included a text control to display my input parameters.

I just set the value expression to:
Code:
"From Date"&param_from_date

the only thing is, the report displays these as US style date. I want to set it to dd-mmm-yy format.

how/where do I do this?
 
Try setting it to:

"From Date " & format$(param_from_date,"dd-mmm-yy")

Pete
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top