Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
772 views
in Technique[技术] by (71.8m points)

crystal reports - How to convert string value to proper datetime format

Using crystal-report 7

I want to convert the string value to datetime in crystal report

date format are

20120102 (yyyymmdd)
20120105
...

I want to convert the above string to date format like this

expected output

02/01/2012
05/01/2012
...

Need Crystal report formula help

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

You could try the DateValue function:

DateValue({myTable.strDate})

otherwise, parse it:

Date({myTable.strDate}[1 to 4], {myTable.strDate}[5 to 6], {myTable.strDate}[7 to 8])

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...