You can use the command Formatand specify the desired format. For instance:
=Format(Cdate(Fields!Date.Value),"dd-MM-yyyy")
or you can try the following:
=Day(Fields!Date.Value) & "/" & Month(Fields!Date.Value) & "/" & Year(Fields!Date.Value)
EDIT: Everything's OK:
=Cdate(Mid(Fields!Date.Value,4,2) & "/" & Mid(Fields!Date.Value,1,2) & "/" & Mid(Fields!Date.Value,7,4))
source
share