For displaying only date and eliminating time from date in SSRS
For displaying only date and eliminating time from date in SSRS
=formatdatetime(Parameters!ReportDate.Value,dateformat.shortdate)
=formatdatetime(Fields!ReportDate.Value,dateformat.shortdate)
use appropriate from above two formulas.
"dateformat.shortdate" will show only date value and eliminate time from it.
and it will be used in "formatdatetime" function.
=formatdatetime(Parameters!ReportDate.Value,dateformat.shortdate)
=formatdatetime(Fields!ReportDate.Value,dateformat.shortdate)
use appropriate from above two formulas.
"dateformat.shortdate" will show only date value and eliminate time from it.
and it will be used in "formatdatetime" function.
Comments
Post a Comment