Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

how to get a blank date in Crystal report instead of 12/30/1899

I am using crystal report and i an using a date parameter. In some cases i am not returning any date from database. The system is tracking a default date 12/30/1899. So in this case i want to bind the report with blank date. Need to show all other fields with blank date. Pls do an help for this

Thanks in advance Jidheesh

like image 415
Jidheesh Rajan Avatar asked Nov 03 '22 00:11

Jidheesh Rajan


1 Answers

use this format in select query

select isnull(dateColumn,''),column2 from table
like image 179
felix Antony Avatar answered Nov 12 '22 13:11

felix Antony