Forum Replies Created

Viewing 4 posts - 1 through 5 (of 5 total)

  • RE: Display Criteria Chosen on Report

    Just change the format string in the FORMAT function to :

    FORMAT(Parameters!EndDate.Value,"MM/dd/yyyy")

    or whichever order you want the year, month, day displayed.

    It doesn't not matter if you use two textboxes, you...

  • RE: SSRS2008 Report Manager doesn't display correctly

    Check the URL you are linking to!

    This will give you a page with no style and just a white background with links to each folder:

    http://IP/ReportServer

    http://ComputerName/ReportServer

    This will give SQL Server Reporting...

  • RE: Display Criteria Chosen on Report

    If you are using Reporting Services, you can just add a textbox and write an expression like the following:

    "Start Date:" + Parameters!StartDate.Value.ToString() + " " +

    " End Date:" + Parameters!EndDate.Value.ToString()

    If...

  • RE: Display Criteria Chosen on Report

    If you are using Reporting Services, you can just add a textbox and write an expression like the following:

    "Start Date:" + Parameters!StartDate.Value.ToString() + " " +

    " End Date:" + Parameters!EndDate.Value.ToString()

    If...

Viewing 4 posts - 1 through 5 (of 5 total)