Forum Replies Created

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

  • RE: Page Layout for Printing/Export purposes.

    Make sure width of the "body" area is less then width set in the report layout

  • RE: Custom Report Parameters

    For parameters query:

    SELECT 0, 'All'

    UNION

    SELECT id, text

    FROM table1

    For data retrieval:

    CREATE TABLE #IDS (ID int)

    IF @ID = 0

       INSERT INTO #IDS

       SELECT id FROM table1

    ELSE

       SELECT id FROM table1 WHERE id...

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