Viewing 2 posts - 1 through 2 (of 2 total)
Make sure width of the "body" area is less then width set in the report layout
August 10, 2005 at 10:20 am
#581110
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...
August 10, 2005 at 10:11 am
#581108