Forum Replies Created

Viewing 6 posts - 1 through 6 (of 6 total)

  • RE: Navigation Options in Reports

    A client wanted a "Previous Page" link in a report that was hyperlinked from another report. Kind of like a history.go(-1);

    I know you can't use javascript in RS but is...

  • RE: Reporting Services - Format Function on Report

    Have you tried ###-###-#### as the Format?

  • RE: Report grouping issue

    If I am understanding your issue correctly, this is what you need to do.

    1. Create a List box, set the details grouping on this to your "header data".
    2. Drag your "header data"...
  • RE: Certification strategy

    I agree with Peter in that getting SQL 2005 certifications would reinforce some of your current knowledge while keeping you up to date on the current technologies, therefore boosting your value...

  • RE: Multiple Records on one page

    If you wanting something like the following then do use the table or list control?

    Date                  Interest Rate

    12/15/2005          1.23

    12/07/2005          3.45

    11/23/2005          2.14

    11/17/2005          1.34

    11/10/2005          1.76

    Or do you want the date to be...

  • RE: Multiple Records on one page

    select top 5 date, interest_rate from table

    order by date desc

Viewing 6 posts - 1 through 6 (of 6 total)