cancel
Showing results for 
Search instead for 
Did you mean: 

I want to show Numberic data in database colomn as a Date_type format in report header

Former Member
0 Kudos

Post Author: tripus

CA Forum: Formula

I want to show Numberic datatype colomn in database as a Date_type format in report header, For example

Data in Database I want to show in Report heading as

200412 December, 2004

200506 June, 2005

Accepted Solutions (0)

Answers (2)

Answers (2)

Former Member
0 Kudos

Post Author: tripus

CA Forum: Formula

Thanks Yangster. The formula is working fine.

Former Member
0 Kudos

Post Author: yangster

CA Forum: Formula

stringvar year_string := totext(field)[1 to 4];stringvar month_string := monthname(tonumber(totext(field)[5 to 6]));month_string&", "&year_string