Reputation: 561
i have date and time in my sql serverdata base in this format:
2018-05-18 13:14:59.9277026
But when i use SSSRS reporting services and format that datetime field like
dd.MM.yyyy HH:mm
i loss seconds but SSRS round time and i get one more minute in report
Result in report is
2018-05-18 13:15
which is not ok for me. Any suggestion?
Upvotes: 0
Views: 604
Reputation: 3837
try this format expression
=CDate(Fields!data.Value).ToString("yyyy/MM/dd HH:mm:ss")
Upvotes: 1