How to convert datetime format to date format in crystal report using C#?

前端 未结 8 1223
遇见更好的自我
遇见更好的自我 2021-01-04 13:01

i am working c# windows form application and also in crystal report.i am retriving the date from database in datetime format but i like display date only in report,Is any fo

8条回答
  •  难免孤独
    2021-01-04 13:44

    If the datetime is in field (not a formula) then you can format it:

    1. Right click on the field -> Format Editor
    2. Date and Time tab
    3. Select date/time formatting you desire (or click customize)

    If the datetime is in a formula:

    ToText({MyDate}, "dd-MMM-yyyy")
    //Displays 31-Jan-2010
    

    or

    ToText({MyDate}, "dd-MM-yyyy")
    //Displays 31-01-2010
    

    or

    ToText({MyDate}, "dd-MM-yy")
    //Displays 31-01-10
    

    etc...

提交回复
热议问题