Announcements
HI all,
i have created a new SSRS report for Sales Invoice.
In this report, will display the Invoice date, which has Transdate data type. but in report it's coming with Date+Time. I need only date.
please let me know how i will do?
thanks!
Select the date field in SSRS report and change the format as DD/MM/YYYY. If not working , please delete the report from report folder of server and redeploy the report and check.
@rp@n,
Try this expression:
=FormatDateTime(Parameters!YourField.value, DateFormat.ShortDate) or =FormatDateTime(Parameters!YourField.Value,2)
That worked fine for me, I believe its cache issue. You can delete .rdl from folder under 'Drive:\AosService\PackagesLocalDirectory\your model\Reports\'Your report name' and try to deploy report again.
I did the same , but still it showing the same
i have also restart ssrs service and clear the cache.
anytthing else required?
You can use following function in expression to format your date on SSRS report to show only date,
= FORMAT(Cdate("Your Date field"), "MM/dd/yyyy")
André Arnaud de Cal...
294,095
Super User 2025 Season 1
Martin Dráb
232,866
Most Valuable Professional
nmaenpaa
101,158
Moderator