Forum Discussion
mjsystemss
4 months agoResolver I
RDL Error
Hello, I have been getting this error on rdl file since today. I have tried to format the date columns SELECT TO_DATE(App_Submitted_DT DEFAULT NULL ON CONVERSION ERROR, 'MM/DD/YYYY') AS App_Submit...
- 3 months ago
This has been resolved. SSRS has date range it can handle. As a column contains date and days. Dates outside 100 years bound will give an error.
cengizhanarslan
4 months agoSuper User
Replace CAST with TO_DATE on Grant_Execution_Date:
TO_DATE(
TO_CHAR( Grant_Execution_Date ),
'MM/DD/YYYY'
DEFAULT NULL ON CONVERSION ERROR
) AS Grant_Execution_Date