Viewing 15 posts - 76 through 90 (of 126 total)
Hi, check the size of the cells in the report designer (development studio) and look at the width size of the cell and then preview, do they preview ok? the...
June 16, 2010 at 8:00 am
Not sure about ssrs2008 but with ssrs2005 making the changes should work.
June 15, 2010 at 8:55 am
Hi,
You can do this simply in your sql query in the Design tab of your report.
You will need something like
Select * from Table_Cost_Types CT
where
CT.cost_type in
( case when...
June 15, 2010 at 8:07 am
Hi, you will need to check the page layout of the report. Menu Report > Report properties > Layout tab and change the page width to 11.27in and height to...
June 15, 2010 at 7:54 am
Hi,
Check the status of the subscription for the report in report manager, there should be a row for each subscription.
The status should read something like ' Done: 422...
June 15, 2010 at 7:46 am
Hi , you should be able to create a text box for each of the parameters. Right click on the text box select expression and then in the expression window...
June 15, 2010 at 7:30 am
Hi,
For the main table edit the properties and insert a page break after the table.
For the totals I would copy your original table and past it below your main...
June 15, 2010 at 3:14 am
Hi,
All you need to is select the relevent cell in your table and then in the properties window (press f4 if you can't see it)
under the font heading you will...
June 11, 2010 at 8:29 am
It would probably easier just to use the sql command in the report, which would be something like
select * from mytable
where date_of_visit >=
--time element has been stripped out
CONVERT(SMALLDATETIME,CONVERT(VARCHAR(20),getdate(),101)...
June 11, 2010 at 8:18 am
No it is a global field and is already there, in the expression window click on globals in the menu and you will see it there.
June 11, 2010 at 3:06 am
Hi,
This should be possible.
There is a globals field (=User!UserID) which returns the id for the user who is running the report.
I would first of all place the user...
June 11, 2010 at 2:40 am
Thanks for your replies guys.
I agree that creating an extra group for users who need access to other folders makes sense as it is a lot easier to manage in...
June 11, 2010 at 2:16 am
I think it is possible but you have to write your own report schedule see the link below;
http://msdn.microsoft.com/en-us/library/aa258073(SQL.80).aspx
June 10, 2010 at 5:33 am
HI, I think the reason your query is slow is due to the calculated fields within the main select statement. Try changing the query and use derived tables this should...
May 28, 2010 at 2:39 am
Hi,
I think this very much depends on what type of databases you will reporting on in your organization and the reporting requirements.
If most of your databases are sql server...
May 27, 2010 at 6:12 am
Viewing 15 posts - 76 through 90 (of 126 total)