How to remove the time and Display the Date only in RDLC
You can use the FormatDateTime method:
=FormatDateTime(Fields!date.Value, DateFormat.ShortDate)
Or you can set the formatting in the properties window:
="Current Date:-"&Format(Now,"dd/MM/yyyy hh:mm tt") this is for current date and time