Search code examples
datetimereporting-servicesrdlcssrs-2012ssrs-tablix

time format for Start date, End date - SSRS


In my SSRS report i have Startdate, enddate parameters(datetime).For start date I have default value as =DateAdd("d",-7,Now()) and end date as =Now(). While select startdate from datepicker, I want to display time format "00:00:00" and for end date "23:59:59". How can we achieve this with ssrs function? Can anyone help me to complete this? Thanks in advance..


Solution

  • I have changed the format for start date and end date as following :

    =DateAdd("d",-7,(CDate(Format(Today(), "yyyy-MM-dd" & " 00:00:01"))))
    =CDate(Format(Today(), "yyyy-MM-dd" & " 23:59:59"))
    

    Now, I am able to get the startdate as "00:00:01 AM" and enddate as "23:59:59"