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!

Convert month from (03/20/2003) into March

Status
Not open for further replies.

ricksmith2005

Technical User
Mar 20, 2003
1
0
0
US
Hi,

I have a report that pulls data of birth in 03/20/2003 format every week, now I want to convert this month 03 into March. This will be the Header of the report. Please let me know how I can achieve this in impromptu.

Thx
Rick
 
In Impromptu you should just have to do a:
left(monthname(date_value), 3)

where left is the left function, monthname is the monthname function, date_value is your date field, and 3 is the numeral passed as part of the left arguement.

That worked for me against a SQL Server db.

-Charles
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top