Crystal Report Parameter Date format not support? - crystal-reports

When I run/edit the report I have some error which Date format like this:
Follow up suggestion lead to the next issue:

Related

Getting Start Date and End date of a Crystal Report

Good day guys,
I have several reports generated using Crystal report with a Date Range value and I need to get the formular for the Start date and End date of the report
Several reports has been generated using Crystal Report. I have used the Minimum() and maximum() formulars to get the Start date of the range and also the end date of it. But it is only picking the start date for the two reports.
minimum({Dttable.Order_date})
I expect the Output to be that if the date range selected is
01/07/2019-31/07/2019
Output should be start date 01/07/2019
end date 31/07/2019
I got a way Around.
I had to use it as formular and not under RunningTotal

Crystal reports date functions and formula

I'm not even sure how to start writing this logic. I have help desk issues in a SQL database with a create date and a resolved date columns. I'm trying to display only the records in which their create date is 14 days or less than the resolved date. Right now the report prompts for the start date and end date. Now I want to modify it. How do I write this logic and in which section of the formula builder? I'm using CR 2011 Standard.

convert String format into datetime format in crystal report

i have a one field,i want to convert this date filed into date time format as following format in crystal report level.
Please suggest me formula for this
CdateTime({database_string_field})

bypass computer regional settings in rdlc reports

I have a problem displaying dates in rdlc reports using C#, the date came from sql server is DateTime type i.e 2013-06-25 02:30:00.000, but when displayed on report it formats according to local PC regional settings. I can't use CDate() to format it the way I want because it returns error, I tried to set Format property of the textBox to dd/MM/yyyy but nothing happened. It seems, it dealt with the date value as string.
How can I bypass the regional settings and let report viewer to deal with it as date not string?
I don't think your problem has anything to do with your regional settings, it sounds like the report doesn't understand that the date field is actually a date.
Make sure that the date field in the dataset is of type System.DateTime

Jasper Report Date Format

In Jasper Reoprt, crosstab, I have displayed my date as like "2012-09-13". Is there a way to display it in reverse as "13-09-2012" using any String methods? And another thing is that I retrieve the date from SQL dB.
Thanks in advance!
You can do the above in the query level itself instead of doing it on ireport.
You may want to refer to the below link on how to format dates
format date
In ireport, you can use SimpleDateFormat/DateFormat and format your dates as you require
You can refer the link