Viewing 15 posts - 31 through 45 (of 59 total)
Have a look at the Inscope-function:
Without more information it's hard to give an example but it shoud look like:
=IIF(INSCOPE("Groupname")
, Fields!UsageCount.value/Fields!NumberDays.value
, Fields!UsageCount.value/Fields!TotalNumberDays.value)
May 9, 2008 at 9:44 am
In the table properties check tthe "Header should remain visible while scrolling"- check box.
For a matrix check the "Group header should remain visisble while scrolling" - checkbox of the group...
May 9, 2008 at 9:33 am
You could use a SSIS package as your datasourcetype.
May 9, 2008 at 8:56 am
You might want to replace the dot in the time columns.
DECLARE @date DATETIME
DECLARE @time CHAR(5)
SET @time = '07.45'
SET @date = CONVERT(DATETIME,REPLACE(@time, '.', ':'))
SELECT @date
SELECT LEFT(CONVERT(VARCHAR,@date,108), 5)
May 9, 2008 at 8:37 am
Unfortunately this isn't supported yet.
See link:
http://forums.microsoft.com/MSDN/ShowPost.aspx?PostID=725904&SiteID=1
Hopefully rich text will make it in SQL 2008
March 27, 2008 at 5:12 am
Hi,
I've had the same problem: enabling Agent XPs didn't help.
I've managed to fix it by repairing the Native Client setup:
-Select "Run the SQL Native Client Installation Wizard" in the setup...
March 20, 2008 at 5:33 am
Try the Switch function:
=SWITCH(Fields!new_Region.Value=1, "West",
Fields!new_Region.Value=2, "Central",
Fields!new_Region.Value=3, "East",
Fields!new_Region.Value=4, "Atlantic")
February 25, 2008 at 10:22 am
See AutoRefresh in the report properties.
December 20, 2007 at 10:26 am
I found the a solution:
The shared schedules are created as SQL agent jobs. The name of the job is the ScheduleID that is associated with the schedule name in the...
December 19, 2007 at 8:19 am
Thanks,
I can't change the source tables. The only way I can get it to work is create a temp table with a identity column in the dataset and join...
November 29, 2007 at 2:08 am
You could use Gert Drapers extended stored procedure. Works fine!
November 7, 2007 at 2:02 am
BOL stands for Books OnLine. Don't touch MS SQL without it!!;)
http://msdn2.microsoft.com/en-us/library/ms130214.aspx
Or download it:
The tutorials are in BOL.
October 23, 2007 at 7:32 am
Try this:
Create a variable with datatype object and name varResult
In the general tab set ResultSet to 'Full result set'
In the result set tab add a resulset named '0'...
October 23, 2007 at 6:29 am
Viewing 15 posts - 31 through 45 (of 59 total)