Viewing 15 posts - 91 through 105 (of 147 total)
Sounds crazy but the name is def correct? Also, can you provide a screen shot of the error when trying to use preview?
February 20, 2014 at 1:53 am
using the following as test data
DECLARE @TestData TABLE
(
WhatData NVARCHAR(10) ,
SomeValue BIGINT
...
February 19, 2014 at 9:34 am
Here is my take on this with the sample data below
DECLARE @TestData TABLE
(
EntryNumber INT ,
...
February 19, 2014 at 9:19 am
What do you mean by the filter is not working? Can you show some sample data, expected output and what is actually being output and I will have a...
February 19, 2014 at 8:53 am
have you tried wrapping it in an IF statement?
=IIF(somecalculation > 0,somecalulation,"")
or
=IIF(ISNUMERIC(somecalculation),somecalculation,"")
February 19, 2014 at 8:49 am
Is the subreport inside or outside the Matrix? If in the matrix have you on the sub report properties "Keep Together" property set to True or False? And also...
February 19, 2014 at 8:47 am
I would personally NULL city when not in USA. See examples below
DECLARE @State NVARCHAR(20) = 'Not In USA'
DECLARE @City NVARCHAR(20) = NULL
DECLARE @TestData TABLE
(
...
February 19, 2014 at 8:44 am
Had a quick look and does the following link shed any light on your problem as a potential solution?
February 19, 2014 at 8:19 am
Something like this?
Design the spark line as a sub report with the second data set in it and use a parameter for the metricname and it should work and a...
February 19, 2014 at 7:39 am
Left outer join and a couple of isnull should do the trick unless there is a better way?
SELECT p.dbpatid ,
p.dbadddate ,
...
February 19, 2014 at 4:48 am
You just need to put a tablix on the report pointing to your data set, create a group on the ID and then another child group with the audit description....
February 18, 2014 at 1:59 am
For this kind of thing we have used SSIS to bcp the file out and set the relevant paths and file names etc and works quite well.
February 17, 2014 at 7:03 am
You could also use the Wingdings font
=iif(somefield = somevalue,þ,¨)
[font="Wingdings"]þ[/font]
[font="Wingdings"]¨[/font]
February 17, 2014 at 7:00 am
Is the attached the kind of thing your looking for?
February 17, 2014 at 6:56 am
Viewing 15 posts - 91 through 105 (of 147 total)